diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ApplicationsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ApplicationsOperations.cs new file mode 100644 index 000000000000..ce935f0bfa61 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ApplicationsOperations.cs @@ -0,0 +1,1356 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// ApplicationsOperations operations. + /// + internal partial class ApplicationsOperations : Microsoft.Rest.IServiceOperations, IApplicationsOperations + { + /// + /// Initializes a new instance of the ApplicationsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ApplicationsOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByCluster", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/applications").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Gets properties of the specified application. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (applicationName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "applicationName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("applicationName", applicationName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/applications/{applicationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{applicationName}", System.Uri.EscapeDataString(applicationName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The application create request. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, Application parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, applicationName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, applicationName, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the async operation status. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The long running operation id. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetAzureAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (applicationName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "applicationName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (operationId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "operationId"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("applicationName", applicationName); + tracingParameters.Add("operationId", operationId); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetAzureAsyncOperationStatus", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/applications/{applicationName}/azureasyncoperations/{operationId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{applicationName}", System.Uri.EscapeDataString(applicationName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The application create request. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, Application parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (applicationName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "applicationName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("applicationName", applicationName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/applications/{applicationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{applicationName}", System.Uri.EscapeDataString(applicationName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (applicationName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "applicationName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("applicationName", applicationName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/applications/{applicationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{applicationName}", System.Uri.EscapeDataString(applicationName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByClusterNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ApplicationsOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ApplicationsOperationsExtensions.cs new file mode 100644 index 000000000000..7724bc1d66f7 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ApplicationsOperationsExtensions.cs @@ -0,0 +1,358 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for ApplicationsOperations + /// + public static partial class ApplicationsOperationsExtensions + { + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static Microsoft.Rest.Azure.IPage ListByCluster(this IApplicationsOperations operations, string resourceGroupName, string clusterName) + { + return ((IApplicationsOperations)operations).ListByClusterAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByClusterAsync(this IApplicationsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Gets properties of the specified application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + public static Application Get(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName) + { + return ((IApplicationsOperations)operations).GetAsync(resourceGroupName, clusterName, applicationName).GetAwaiter().GetResult(); + } + + /// + /// Gets properties of the specified application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, applicationName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + public static Application Create(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, Application parameters) + { + return ((IApplicationsOperations)operations).CreateAsync(resourceGroupName, clusterName, applicationName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateAsync(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, Application parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, applicationName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + public static void Delete(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName) + { + ((IApplicationsOperations)operations).DeleteAsync(resourceGroupName, clusterName, applicationName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, applicationName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Gets the async operation status. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The long running operation id. + /// + public static AsyncOperationResult GetAzureAsyncOperationStatus(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, string operationId) + { + return ((IApplicationsOperations)operations).GetAzureAsyncOperationStatusAsync(resourceGroupName, clusterName, applicationName, operationId).GetAwaiter().GetResult(); + } + + /// + /// Gets the async operation status. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The long running operation id. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAzureAsyncOperationStatusAsync(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, string operationId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetAzureAsyncOperationStatusWithHttpMessagesAsync(resourceGroupName, clusterName, applicationName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + public static Application BeginCreate(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, Application parameters) + { + return ((IApplicationsOperations)operations).BeginCreateAsync(resourceGroupName, clusterName, applicationName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginCreateAsync(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, Application parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, applicationName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + public static void BeginDelete(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName) + { + ((IApplicationsOperations)operations).BeginDeleteAsync(resourceGroupName, clusterName, applicationName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginDeleteAsync(this IApplicationsOperations operations, string resourceGroupName, string clusterName, string applicationName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, applicationName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListByClusterNext(this IApplicationsOperations operations, string nextPageLink) + { + return ((IApplicationsOperations)operations).ListByClusterNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByClusterNextAsync(this IApplicationsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ClustersOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ClustersOperations.cs new file mode 100644 index 000000000000..d7fe6437fb54 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ClustersOperations.cs @@ -0,0 +1,3476 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// ClustersOperations operations. + /// + internal partial class ClustersOperations : Microsoft.Rest.IServiceOperations, IClustersOperations + { + /// + /// Initializes a new instance of the ClustersOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ClustersOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster create request. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterCreateParametersExtended parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Patch HDInsight cluster with the specified parameters. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The resource tags. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + ClusterPatchParameters parameters = new ClusterPatchParameters(); + if(tags != null) + { + parameters.Tags = tags; + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// The name of the resource group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The target instance count for the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task ResizeWithHttpMessagesAsync(string resourceGroupName, string clusterName, int? targetInstanceCount = default(int?), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginResizeWithHttpMessagesAsync(resourceGroupName, clusterName, targetInstanceCount, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The autoscale configuration. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task UpdateAutoScaleConfigurationWithHttpMessagesAsync(string resourceGroupName, string clusterName, Autoscale autoscale = default(Autoscale), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginUpdateAutoScaleConfigurationWithHttpMessagesAsync(resourceGroupName, clusterName, autoscale, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.HDInsight/clusters").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The parameters for the disk encryption operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task RotateDiskEncryptionKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginRotateDiskEncryptionKeyWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetGatewaySettings", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/getGatewaySettings").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task UpdateGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginUpdateGatewaySettingsWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The the async operation status. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetAzureAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (operationId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "operationId"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("operationId", operationId); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetAzureAsyncOperationStatus", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/azureasyncoperations/{operationId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Updates the cluster identity certificate. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task UpdateIdentityCertificateWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginUpdateIdentityCertificateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The list of run time script actions. + /// + /// + /// Gets or sets if the scripts needs to be persisted. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task ExecuteScriptActionsWithHttpMessagesAsync(string resourceGroupName, string clusterName, bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginExecuteScriptActionsWithHttpMessagesAsync(resourceGroupName, clusterName, persistOnSuccess, scriptActions, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster create request. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterCreateParametersExtended parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The target instance count for the operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginResizeWithHttpMessagesAsync(string resourceGroupName, string clusterName, int? targetInstanceCount = default(int?), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + string roleName = "workernode"; + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + ClusterResizeParameters parameters = new ClusterResizeParameters(); + if(targetInstanceCount != null) + { + parameters.TargetInstanceCount = targetInstanceCount; + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("roleName", roleName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginResize", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/roles/{roleName}/resize").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{roleName}", System.Uri.EscapeDataString(roleName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The autoscale configuration. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginUpdateAutoScaleConfigurationWithHttpMessagesAsync(string resourceGroupName, string clusterName, Autoscale autoscale = default(Autoscale), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + string roleName = "workernode"; + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + AutoscaleConfigurationUpdateParameter parameters = new AutoscaleConfigurationUpdateParameter(); + if(autoscale != null) + { + parameters.Autoscale = autoscale; + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("roleName", roleName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginUpdateAutoScaleConfiguration", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/roles/{roleName}/autoscale").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{roleName}", System.Uri.EscapeDataString(roleName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The parameters for the disk encryption operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginRotateDiskEncryptionKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginRotateDiskEncryptionKey", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/rotatediskencryptionkey").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginUpdateGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginUpdateGatewaySettings", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/updateGatewaySettings").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Updates the cluster identity certificate. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginUpdateIdentityCertificateWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginUpdateIdentityCertificate", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/updateClusterIdentityCertificate").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The list of run time script actions. + /// + /// + /// Gets or sets if the scripts needs to be persisted. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginExecuteScriptActionsWithHttpMessagesAsync(string resourceGroupName, string clusterName, bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + ExecuteScriptActionParameters parameters = new ExecuteScriptActionParameters(); + if(scriptActions != null) + { + parameters.ScriptActions = scriptActions; + } + parameters.PersistOnSuccess = persistOnSuccess; + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginExecuteScriptActions", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/executeScriptActions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new Microsoft.Rest.Azure.CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new Microsoft.Rest.Azure.CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ClustersOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ClustersOperationsExtensions.cs new file mode 100644 index 000000000000..877a000b43de --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ClustersOperationsExtensions.cs @@ -0,0 +1,886 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for ClustersOperations + /// + public static partial class ClustersOperationsExtensions + { + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static Cluster Create(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterCreateParametersExtended parameters) + { + return ((IClustersOperations)operations).CreateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterCreateParametersExtended parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Patch HDInsight cluster with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static Cluster Update(this IClustersOperations operations, string resourceGroupName, string clusterName, System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + { + return ((IClustersOperations)operations).UpdateAsync(resourceGroupName, clusterName, tags).GetAwaiter().GetResult(); + } + + /// + /// Patch HDInsight cluster with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task UpdateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, tags, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void Delete(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + ((IClustersOperations)operations).DeleteAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Gets the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static Cluster Get(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return ((IClustersOperations)operations).GetAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + public static Microsoft.Rest.Azure.IPage ListByResourceGroup(this IClustersOperations operations, string resourceGroupName) + { + return ((IClustersOperations)operations).ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByResourceGroupAsync(this IClustersOperations operations, string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void Resize(this IClustersOperations operations, string resourceGroupName, string clusterName, int? targetInstanceCount = default(int?)) + { + ((IClustersOperations)operations).ResizeAsync(resourceGroupName, clusterName, targetInstanceCount).GetAwaiter().GetResult(); + } + + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task ResizeAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, int? targetInstanceCount = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.ResizeWithHttpMessagesAsync(resourceGroupName, clusterName, targetInstanceCount, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void UpdateAutoScaleConfiguration(this IClustersOperations operations, string resourceGroupName, string clusterName, Autoscale autoscale = default(Autoscale)) + { + ((IClustersOperations)operations).UpdateAutoScaleConfigurationAsync(resourceGroupName, clusterName, autoscale).GetAwaiter().GetResult(); + } + + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task UpdateAutoScaleConfigurationAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, Autoscale autoscale = default(Autoscale), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.UpdateAutoScaleConfigurationWithHttpMessagesAsync(resourceGroupName, clusterName, autoscale, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// The operations group for this extension method. + /// + public static Microsoft.Rest.Azure.IPage List(this IClustersOperations operations) + { + return ((IClustersOperations)operations).ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListAsync(this IClustersOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void RotateDiskEncryptionKey(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters) + { + ((IClustersOperations)operations).RotateDiskEncryptionKeyAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task RotateDiskEncryptionKeyAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.RotateDiskEncryptionKeyWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static GatewaySettings GetGatewaySettings(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return ((IClustersOperations)operations).GetGatewaySettingsAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetGatewaySettingsAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetGatewaySettingsWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void UpdateGatewaySettings(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters) + { + ((IClustersOperations)operations).UpdateGatewaySettingsAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task UpdateGatewaySettingsAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.UpdateGatewaySettingsWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// The the async operation status. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + public static AsyncOperationResult GetAzureAsyncOperationStatus(this IClustersOperations operations, string resourceGroupName, string clusterName, string operationId) + { + return ((IClustersOperations)operations).GetAzureAsyncOperationStatusAsync(resourceGroupName, clusterName, operationId).GetAwaiter().GetResult(); + } + + /// + /// The the async operation status. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAzureAsyncOperationStatusAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, string operationId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetAzureAsyncOperationStatusWithHttpMessagesAsync(resourceGroupName, clusterName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Updates the cluster identity certificate. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void UpdateIdentityCertificate(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters) + { + ((IClustersOperations)operations).UpdateIdentityCertificateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates the cluster identity certificate. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task UpdateIdentityCertificateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.UpdateIdentityCertificateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void ExecuteScriptActions(this IClustersOperations operations, string resourceGroupName, string clusterName, bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList)) + { + ((IClustersOperations)operations).ExecuteScriptActionsAsync(resourceGroupName, clusterName, persistOnSuccess, scriptActions).GetAwaiter().GetResult(); + } + + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task ExecuteScriptActionsAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.ExecuteScriptActionsWithHttpMessagesAsync(resourceGroupName, clusterName, persistOnSuccess, scriptActions, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static Cluster BeginCreate(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterCreateParametersExtended parameters) + { + return ((IClustersOperations)operations).BeginCreateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginCreateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterCreateParametersExtended parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginDelete(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + ((IClustersOperations)operations).BeginDeleteAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginDeleteAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginResize(this IClustersOperations operations, string resourceGroupName, string clusterName, int? targetInstanceCount = default(int?)) + { + ((IClustersOperations)operations).BeginResizeAsync(resourceGroupName, clusterName, targetInstanceCount).GetAwaiter().GetResult(); + } + + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginResizeAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, int? targetInstanceCount = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginResizeWithHttpMessagesAsync(resourceGroupName, clusterName, targetInstanceCount, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginUpdateAutoScaleConfiguration(this IClustersOperations operations, string resourceGroupName, string clusterName, Autoscale autoscale = default(Autoscale)) + { + ((IClustersOperations)operations).BeginUpdateAutoScaleConfigurationAsync(resourceGroupName, clusterName, autoscale).GetAwaiter().GetResult(); + } + + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginUpdateAutoScaleConfigurationAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, Autoscale autoscale = default(Autoscale), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginUpdateAutoScaleConfigurationWithHttpMessagesAsync(resourceGroupName, clusterName, autoscale, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginRotateDiskEncryptionKey(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters) + { + ((IClustersOperations)operations).BeginRotateDiskEncryptionKeyAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginRotateDiskEncryptionKeyAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginRotateDiskEncryptionKeyWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginUpdateGatewaySettings(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters) + { + ((IClustersOperations)operations).BeginUpdateGatewaySettingsAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginUpdateGatewaySettingsAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginUpdateGatewaySettingsWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Updates the cluster identity certificate. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginUpdateIdentityCertificate(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters) + { + ((IClustersOperations)operations).BeginUpdateIdentityCertificateAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Updates the cluster identity certificate. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginUpdateIdentityCertificateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginUpdateIdentityCertificateWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginExecuteScriptActions(this IClustersOperations operations, string resourceGroupName, string clusterName, bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList)) + { + ((IClustersOperations)operations).BeginExecuteScriptActionsAsync(resourceGroupName, clusterName, persistOnSuccess, scriptActions).GetAwaiter().GetResult(); + } + + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginExecuteScriptActionsAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginExecuteScriptActionsWithHttpMessagesAsync(resourceGroupName, clusterName, persistOnSuccess, scriptActions, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListByResourceGroupNext(this IClustersOperations operations, string nextPageLink) + { + return ((IClustersOperations)operations).ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByResourceGroupNextAsync(this IClustersOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListNext(this IClustersOperations operations, string nextPageLink) + { + return ((IClustersOperations)operations).ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListNextAsync(this IClustersOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ConfigurationsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ConfigurationsOperations.cs new file mode 100644 index 000000000000..a1cf5254b234 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ConfigurationsOperations.cs @@ -0,0 +1,708 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// ConfigurationsOperations operations. + /// + internal partial class ConfigurationsOperations : Microsoft.Rest.IServiceOperations, IConfigurationsOperations + { + /// + /// Initializes a new instance of the ConfigurationsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ConfigurationsOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Gets all configuration information for an HDI cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> ListWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/configurations").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// The cluster configurations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.IDictionary parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, configurationName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (configurationName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "configurationName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("configurationName", configurationName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/configurations/{configurationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{configurationName}", System.Uri.EscapeDataString(configurationName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// The cluster configurations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.IDictionary parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (configurationName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "configurationName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("configurationName", configurationName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/configurations/{configurationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{configurationName}", System.Uri.EscapeDataString(configurationName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ConfigurationsOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ConfigurationsOperationsExtensions.cs new file mode 100644 index 000000000000..64144e21e032 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ConfigurationsOperationsExtensions.cs @@ -0,0 +1,184 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for ConfigurationsOperations + /// + public static partial class ConfigurationsOperationsExtensions + { + /// + /// Gets all configuration information for an HDI cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static ClusterConfigurations List(this IConfigurationsOperations operations, string resourceGroupName, string clusterName) + { + return ((IConfigurationsOperations)operations).ListAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets all configuration information for an HDI cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task ListAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + public static void Update(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.IDictionary parameters) + { + ((IConfigurationsOperations)operations).UpdateAsync(resourceGroupName, clusterName, configurationName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task UpdateAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.IDictionary parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, configurationName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// The configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + public static System.Collections.Generic.IDictionary Get(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName) + { + return ((IConfigurationsOperations)operations).GetAsync(resourceGroupName, clusterName, configurationName).GetAwaiter().GetResult(); + } + + /// + /// The configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> GetAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, configurationName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + public static void BeginUpdate(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.IDictionary parameters) + { + ((IConfigurationsOperations)operations).BeginUpdateAsync(resourceGroupName, clusterName, configurationName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginUpdateAsync(this IConfigurationsOperations operations, string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.IDictionary parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, configurationName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ExtensionsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ExtensionsOperations.cs new file mode 100644 index 000000000000..c57d088cc7b3 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ExtensionsOperations.cs @@ -0,0 +1,2252 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// ExtensionsOperations operations. + /// + internal partial class ExtensionsOperations : Microsoft.Rest.IServiceOperations, IExtensionsOperations + { + /// + /// Initializes a new instance of the ExtensionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ExtensionsOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster monitor workspace ID. + /// + /// + /// The cluster monitor workspace key. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task EnableMonitoringWithHttpMessagesAsync(string resourceGroupName, string clusterName, string workspaceId = default(string), string primaryKey = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginEnableMonitoringWithHttpMessagesAsync(resourceGroupName, clusterName, workspaceId, primaryKey, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the status of Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetMonitoringStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetMonitoringStatus", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/clustermonitoring").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task DisableMonitoringWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginDisableMonitoringWithHttpMessagesAsync(resourceGroupName, clusterName, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The Log Analytics workspace parameters. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task EnableAzureMonitorWithHttpMessagesAsync(string resourceGroupName, string clusterName, AzureMonitorRequest parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginEnableAzureMonitorWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the status of Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetAzureMonitorStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetAzureMonitorStatus", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/azureMonitor").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task DisableAzureMonitorWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginDisableAzureMonitorWithHttpMessagesAsync(resourceGroupName, clusterName, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The workspace ID for the cluster monitoring extension. + /// + /// + /// The certificate for the cluster monitoring extensions. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, string workspaceId = default(string), string primaryKey = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, extensionName, workspaceId, primaryKey, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the extension properties for the specified HDInsight cluster extension. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (extensionName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "extensionName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("extensionName", extensionName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/{extensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{extensionName}", System.Uri.EscapeDataString(extensionName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, extensionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the async operation status. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The long running operation id. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetAzureAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (extensionName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "extensionName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (operationId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "operationId"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("extensionName", extensionName); + tracingParameters.Add("operationId", operationId); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetAzureAsyncOperationStatus", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/{extensionName}/azureAsyncOperations/{operationId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{extensionName}", System.Uri.EscapeDataString(extensionName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster monitor workspace ID. + /// + /// + /// The cluster monitor workspace key. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginEnableMonitoringWithHttpMessagesAsync(string resourceGroupName, string clusterName, string workspaceId = default(string), string primaryKey = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + ClusterMonitoringRequest parameters = new ClusterMonitoringRequest(); + if(workspaceId != null||primaryKey != null) + { + parameters.WorkspaceId = workspaceId; + parameters.PrimaryKey = primaryKey; + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginEnableMonitoring", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/clustermonitoring").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginDisableMonitoringWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginDisableMonitoring", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/clustermonitoring").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The Log Analytics workspace parameters. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginEnableAzureMonitorWithHttpMessagesAsync(string resourceGroupName, string clusterName, AzureMonitorRequest parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginEnableAzureMonitor", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/azureMonitor").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginDisableAzureMonitorWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginDisableAzureMonitor", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/azureMonitor").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The workspace ID for the cluster monitoring extension. + /// + /// + /// The certificate for the cluster monitoring extensions. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, string workspaceId = default(string), string primaryKey = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (extensionName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "extensionName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + Extension parameters = new Extension(); + if(workspaceId != null||primaryKey != null) + { + parameters.WorkspaceId = workspaceId; + parameters.PrimaryKey = primaryKey; + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("extensionName", extensionName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/{extensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{extensionName}", System.Uri.EscapeDataString(extensionName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (extensionName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "extensionName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("extensionName", extensionName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/extensions/{extensionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{extensionName}", System.Uri.EscapeDataString(extensionName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ExtensionsOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ExtensionsOperationsExtensions.cs new file mode 100644 index 000000000000..77588e2e1e10 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ExtensionsOperationsExtensions.cs @@ -0,0 +1,646 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for ExtensionsOperations + /// + public static partial class ExtensionsOperationsExtensions + { + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void EnableMonitoring(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string workspaceId = default(string), string primaryKey = default(string)) + { + ((IExtensionsOperations)operations).EnableMonitoringAsync(resourceGroupName, clusterName, workspaceId, primaryKey).GetAwaiter().GetResult(); + } + + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task EnableMonitoringAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string workspaceId = default(string), string primaryKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.EnableMonitoringWithHttpMessagesAsync(resourceGroupName, clusterName, workspaceId, primaryKey, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Gets the status of Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static ClusterMonitoringResponse GetMonitoringStatus(this IExtensionsOperations operations, string resourceGroupName, string clusterName) + { + return ((IExtensionsOperations)operations).GetMonitoringStatusAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets the status of Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetMonitoringStatusAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetMonitoringStatusWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void DisableMonitoring(this IExtensionsOperations operations, string resourceGroupName, string clusterName) + { + ((IExtensionsOperations)operations).DisableMonitoringAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DisableMonitoringAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.DisableMonitoringWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void EnableAzureMonitor(this IExtensionsOperations operations, string resourceGroupName, string clusterName, AzureMonitorRequest parameters) + { + ((IExtensionsOperations)operations).EnableAzureMonitorAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task EnableAzureMonitorAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, AzureMonitorRequest parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.EnableAzureMonitorWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Gets the status of Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static AzureMonitorResponse GetAzureMonitorStatus(this IExtensionsOperations operations, string resourceGroupName, string clusterName) + { + return ((IExtensionsOperations)operations).GetAzureMonitorStatusAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets the status of Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAzureMonitorStatusAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetAzureMonitorStatusWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void DisableAzureMonitor(this IExtensionsOperations operations, string resourceGroupName, string clusterName) + { + ((IExtensionsOperations)operations).DisableAzureMonitorAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DisableAzureMonitorAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.DisableAzureMonitorWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + public static void Create(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, string workspaceId = default(string), string primaryKey = default(string)) + { + ((IExtensionsOperations)operations).CreateAsync(resourceGroupName, clusterName, extensionName, workspaceId, primaryKey).GetAwaiter().GetResult(); + } + + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, string workspaceId = default(string), string primaryKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, extensionName, workspaceId, primaryKey, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Gets the extension properties for the specified HDInsight cluster extension. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + public static ClusterMonitoringResponse Get(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName) + { + return ((IExtensionsOperations)operations).GetAsync(resourceGroupName, clusterName, extensionName).GetAwaiter().GetResult(); + } + + /// + /// Gets the extension properties for the specified HDInsight cluster extension. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, extensionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + public static void Delete(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName) + { + ((IExtensionsOperations)operations).DeleteAsync(resourceGroupName, clusterName, extensionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, extensionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Gets the async operation status. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The long running operation id. + /// + public static AsyncOperationResult GetAzureAsyncOperationStatus(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, string operationId) + { + return ((IExtensionsOperations)operations).GetAzureAsyncOperationStatusAsync(resourceGroupName, clusterName, extensionName, operationId).GetAwaiter().GetResult(); + } + + /// + /// Gets the async operation status. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The long running operation id. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAzureAsyncOperationStatusAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, string operationId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetAzureAsyncOperationStatusWithHttpMessagesAsync(resourceGroupName, clusterName, extensionName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginEnableMonitoring(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string workspaceId = default(string), string primaryKey = default(string)) + { + ((IExtensionsOperations)operations).BeginEnableMonitoringAsync(resourceGroupName, clusterName, workspaceId, primaryKey).GetAwaiter().GetResult(); + } + + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginEnableMonitoringAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string workspaceId = default(string), string primaryKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginEnableMonitoringWithHttpMessagesAsync(resourceGroupName, clusterName, workspaceId, primaryKey, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginDisableMonitoring(this IExtensionsOperations operations, string resourceGroupName, string clusterName) + { + ((IExtensionsOperations)operations).BeginDisableMonitoringAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginDisableMonitoringAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginDisableMonitoringWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginEnableAzureMonitor(this IExtensionsOperations operations, string resourceGroupName, string clusterName, AzureMonitorRequest parameters) + { + ((IExtensionsOperations)operations).BeginEnableAzureMonitorAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginEnableAzureMonitorAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, AzureMonitorRequest parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginEnableAzureMonitorWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginDisableAzureMonitor(this IExtensionsOperations operations, string resourceGroupName, string clusterName) + { + ((IExtensionsOperations)operations).BeginDisableAzureMonitorAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginDisableAzureMonitorAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginDisableAzureMonitorWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + public static void BeginCreate(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, string workspaceId = default(string), string primaryKey = default(string)) + { + ((IExtensionsOperations)operations).BeginCreateAsync(resourceGroupName, clusterName, extensionName, workspaceId, primaryKey).GetAwaiter().GetResult(); + } + + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginCreateAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, string workspaceId = default(string), string primaryKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, extensionName, workspaceId, primaryKey, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + public static void BeginDelete(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName) + { + ((IExtensionsOperations)operations).BeginDeleteAsync(resourceGroupName, clusterName, extensionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginDeleteAsync(this IExtensionsOperations operations, string resourceGroupName, string clusterName, string extensionName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, extensionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/HDInsightManagementClient.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/HDInsightManagementClient.cs new file mode 100644 index 000000000000..2df2f58bc6cc --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/HDInsightManagementClient.cs @@ -0,0 +1,389 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// The HDInsight Management Client. + /// + public partial class HDInsightManagementClient : Microsoft.Rest.ServiceClient, IHDInsightManagementClient, IAzureClient + { + /// + /// The base URI of the service. + /// + public System.Uri BaseUri { get; set; } + /// + /// Gets or sets json serialization settings. + /// + public Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; private set; } + /// + /// Gets or sets json deserialization settings. + /// + public Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; private set; } + /// + /// Credentials needed for the client to connect to Azure. + /// + public Microsoft.Rest.ServiceClientCredentials Credentials { get; private set; } + + /// + /// The API version to use for this operation. + /// + public string ApiVersion { get; private set; } + + /// + /// The subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// + public string SubscriptionId { get; set;} + + /// + /// The preferred language for the response. + /// + public string AcceptLanguage { get; set;} + + /// + /// The retry timeout in seconds for Long Running Operations. Default + /// value is 30. + /// + public int? LongRunningOperationRetryTimeout { get; set;} + + /// + /// Whether a unique x-ms-client-request-id should be generated. When + /// set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + public bool? GenerateClientRequestId { get; set;} + + /// + /// Gets the IApplicationsOperations + /// + public virtual IApplicationsOperations Applications { get; private set; } + /// + /// Gets the IClustersOperations + /// + public virtual IClustersOperations Clusters { get; private set; } + /// + /// Gets the IConfigurationsOperations + /// + public virtual IConfigurationsOperations Configurations { get; private set; } + /// + /// Gets the IExtensionsOperations + /// + public virtual IExtensionsOperations Extensions { get; private set; } + /// + /// Gets the ILocationsOperations + /// + public virtual ILocationsOperations Locations { get; private set; } + /// + /// Gets the IOperations + /// + public virtual IOperations Operations { get; private set; } + /// + /// Gets the IPrivateEndpointConnectionsOperations + /// + public virtual IPrivateEndpointConnectionsOperations PrivateEndpointConnections { get; private set; } + /// + /// Gets the IPrivateLinkResourcesOperations + /// + public virtual IPrivateLinkResourcesOperations PrivateLinkResources { get; private set; } + /// + /// Gets the IScriptActionsOperations + /// + public virtual IScriptActionsOperations ScriptActions { get; private set; } + /// + /// Gets the IScriptExecutionHistoryOperations + /// + public virtual IScriptExecutionHistoryOperations ScriptExecutionHistory { get; private set; } + /// + /// Gets the IVirtualMachinesOperations + /// + public virtual IVirtualMachinesOperations VirtualMachines { get; private set; } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling HDInsightManagementClient.Dispose(). False: will not dispose provided httpClient + protected HDInsightManagementClient(System.Net.Http.HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) + { + this.Initialize(); + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected HDInsightManagementClient(params System.Net.Http.DelegatingHandler[] handlers) : base(handlers) + { + this.Initialize(); + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected HDInsightManagementClient(System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + this.Initialize(); + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected HDInsightManagementClient(System.Uri baseUri, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + protected HDInsightManagementClient(System.Uri baseUri, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + + this.BaseUri = baseUri; + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public HDInsightManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling HDInsightManagementClient.Dispose(). False: will not dispose provided httpClient + /// + /// Thrown when a required parameter is null + /// + public HDInsightManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public HDInsightManagementClient(Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + /// + /// Thrown when a required parameter is null + /// + public HDInsightManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, params System.Net.Http.DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + + } + /// + /// Initializes a new instance of the HDInsightManagementClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Thrown when a required parameter is null + /// + public HDInsightManagementClient(System.Uri baseUri, Microsoft.Rest.ServiceClientCredentials credentials, System.Net.Http.HttpClientHandler rootHandler, params System.Net.Http.DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new System.ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + + } + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + + /// + /// Initializes client properties. + /// + private void Initialize() + { + this.Applications = new ApplicationsOperations(this); + this.Clusters = new ClustersOperations(this); + this.Configurations = new ConfigurationsOperations(this); + this.Extensions = new ExtensionsOperations(this); + this.Locations = new LocationsOperations(this); + this.Operations = new Operations(this); + this.PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); + this.PrivateLinkResources = new PrivateLinkResourcesOperations(this); + this.ScriptActions = new ScriptActionsOperations(this); + this.ScriptExecutionHistory = new ScriptExecutionHistoryOperations(this); + this.VirtualMachines = new VirtualMachinesOperations(this); + this.BaseUri = new System.Uri("https://management.azure.com"); + this.ApiVersion = "2023-08-15-preview"; + this.AcceptLanguage = "en-US"; + this.LongRunningOperationRetryTimeout = 30; + this.GenerateClientRequestId = true; + SerializationSettings = new Newtonsoft.Json.JsonSerializerSettings + { + Formatting = Newtonsoft.Json.Formatting.Indented, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + Converters = new System.Collections.Generic.List + { + new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); + DeserializationSettings = new Newtonsoft.Json.JsonSerializerSettings + { + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new Microsoft.Rest.Serialization.ReadOnlyJsonContractResolver(), + Converters = new System.Collections.Generic.List + { + new Microsoft.Rest.Serialization.Iso8601TimeSpanConverter() + } + }; + CustomInitialize(); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Serialization.TransformationJsonConverter()); + DeserializationSettings.Converters.Add(new Microsoft.Rest.Azure.CloudErrorJsonConverter()); + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IApplicationsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IApplicationsOperations.cs new file mode 100644 index 000000000000..1471d7f9fa6c --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IApplicationsOperations.cs @@ -0,0 +1,243 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// ApplicationsOperations operations. + /// + public partial interface IApplicationsOperations + { + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets properties of the specified application. + /// + /// + /// Gets properties of the specified application. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The application create request. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, Application parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the async operation status. + /// + /// + /// Gets the async operation status. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The long running operation id. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetAzureAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// Creates applications for the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The application create request. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, Application parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// Deletes the specified application on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The constant value for the application name. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string applicationName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// Lists all of the applications for the HDInsight cluster. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IClustersOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IClustersOperations.cs new file mode 100644 index 000000000000..87ddd88d22ca --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IClustersOperations.cs @@ -0,0 +1,638 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// ClustersOperations operations. + /// + public partial interface IClustersOperations + { + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster create request. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterCreateParametersExtended parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Patch HDInsight cluster with the specified parameters. + /// + /// + /// Patch HDInsight cluster with the specified parameters. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The resource tags. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the specified cluster. + /// + /// + /// Gets the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// The name of the resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The target instance count for the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task ResizeWithHttpMessagesAsync(string resourceGroupName, string clusterName, int? targetInstanceCount = default(int?), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The autoscale configuration. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task UpdateAutoScaleConfigurationWithHttpMessagesAsync(string resourceGroupName, string clusterName, Autoscale autoscale = default(Autoscale), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The parameters for the disk encryption operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task RotateDiskEncryptionKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// Gets the gateway settings for the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task UpdateGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// The the async operation status. + /// + /// + /// The the async operation status. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetAzureAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Updates the cluster identity certificate. + /// + /// + /// Updates the cluster identity certificate. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task UpdateIdentityCertificateWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The list of run time script actions. + /// + /// + /// Gets or sets if the scripts needs to be persisted. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task ExecuteScriptActionsWithHttpMessagesAsync(string resourceGroupName, string clusterName, bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// Creates a new HDInsight cluster with the specified parameters. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster create request. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterCreateParametersExtended parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// Deletes the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// Resizes the specified HDInsight cluster to the specified size. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The target instance count for the operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginResizeWithHttpMessagesAsync(string resourceGroupName, string clusterName, int? targetInstanceCount = default(int?), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// Updates the Autoscale Configuration for HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The autoscale configuration. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginUpdateAutoScaleConfigurationWithHttpMessagesAsync(string resourceGroupName, string clusterName, Autoscale autoscale = default(Autoscale), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// Rotate disk encryption key of the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The parameters for the disk encryption operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginRotateDiskEncryptionKeyWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// Configures the gateway settings on the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginUpdateGatewaySettingsWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Updates the cluster identity certificate. + /// + /// + /// Updates the cluster identity certificate. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster configurations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginUpdateIdentityCertificateWithHttpMessagesAsync(string resourceGroupName, string clusterName, UpdateClusterIdentityCertificateParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// Executes script actions on the specified HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The list of run time script actions. + /// + /// + /// Gets or sets if the scripts needs to be persisted. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginExecuteScriptActionsWithHttpMessagesAsync(string resourceGroupName, string clusterName, bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// Lists the HDInsight clusters in a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// Lists all the HDInsight clusters under the subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IConfigurationsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IConfigurationsOperations.cs new file mode 100644 index 000000000000..a2156339fc9b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IConfigurationsOperations.cs @@ -0,0 +1,130 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// ConfigurationsOperations operations. + /// + public partial interface IConfigurationsOperations + { + /// + /// Gets all configuration information for an HDI cluster. + /// + /// + /// Gets all configuration information for an HDI cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> ListWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// The cluster configurations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.IDictionary parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// The configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead. + /// + /// + /// The configuration object for the specified cluster. This API is not recommended and might be removed in the future. Please consider using List configurations API instead. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// Configures the HTTP settings on the specified cluster. This API is deprecated, please use UpdateGatewaySettings in cluster endpoint instead. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster configuration. + /// + /// + /// The cluster configurations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string configurationName, System.Collections.Generic.IDictionary parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IExtensionsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IExtensionsOperations.cs new file mode 100644 index 000000000000..57436bb54713 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IExtensionsOperations.cs @@ -0,0 +1,448 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// ExtensionsOperations operations. + /// + public partial interface IExtensionsOperations + { + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster monitor workspace ID. + /// + /// + /// The cluster monitor workspace key. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task EnableMonitoringWithHttpMessagesAsync(string resourceGroupName, string clusterName, string workspaceId = default(string), string primaryKey = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the status of Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// Gets the status of Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetMonitoringStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task DisableMonitoringWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The Log Analytics workspace parameters. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task EnableAzureMonitorWithHttpMessagesAsync(string resourceGroupName, string clusterName, AzureMonitorRequest parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the status of Azure Monitor on the HDInsight cluster. + /// + /// + /// Gets the status of Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetAzureMonitorStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task DisableAzureMonitorWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The workspace ID for the cluster monitoring extension. + /// + /// + /// The certificate for the cluster monitoring extensions. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, string workspaceId = default(string), string primaryKey = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the extension properties for the specified HDInsight cluster extension. + /// + /// + /// Gets the extension properties for the specified HDInsight cluster extension. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the async operation status. + /// + /// + /// Gets the async operation status. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The long running operation id. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetAzureAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// Enables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cluster monitor workspace ID. + /// + /// + /// The cluster monitor workspace key. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginEnableMonitoringWithHttpMessagesAsync(string resourceGroupName, string clusterName, string workspaceId = default(string), string primaryKey = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// Disables the Operations Management Suite (OMS) on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginDisableMonitoringWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// Enables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The Log Analytics workspace parameters. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginEnableAzureMonitorWithHttpMessagesAsync(string resourceGroupName, string clusterName, AzureMonitorRequest parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// Disables the Azure Monitor on the HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginDisableAzureMonitorWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// Creates an HDInsight cluster extension. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The workspace ID for the cluster monitoring extension. + /// + /// + /// The certificate for the cluster monitoring extensions. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, string workspaceId = default(string), string primaryKey = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// Deletes the specified extension for HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the cluster extension. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string extensionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IHDInsightManagementClient.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IHDInsightManagementClient.cs new file mode 100644 index 000000000000..ef0e37b26f9d --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IHDInsightManagementClient.cs @@ -0,0 +1,127 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// The HDInsight Management Client. + /// + public partial interface IHDInsightManagementClient : System.IDisposable + { + /// + /// The base URI of the service. + /// + System.Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + Microsoft.Rest.ServiceClientCredentials Credentials { get;} + + + /// + /// The API version to use for this operation. + /// + string ApiVersion { get;} + + + /// + /// The subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + /// + string SubscriptionId { get; set;} + + + /// + /// The preferred language for the response. + /// + string AcceptLanguage { get; set;} + + + /// + /// The retry timeout in seconds for Long Running Operations. Default + /// value is 30. + /// + int? LongRunningOperationRetryTimeout { get; set;} + + + /// + /// Whether a unique x-ms-client-request-id should be generated. When + /// set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. + /// + bool? GenerateClientRequestId { get; set;} + + + /// + /// Gets the IApplicationsOperations + /// + IApplicationsOperations Applications { get; } + + /// + /// Gets the IClustersOperations + /// + IClustersOperations Clusters { get; } + + /// + /// Gets the IConfigurationsOperations + /// + IConfigurationsOperations Configurations { get; } + + /// + /// Gets the IExtensionsOperations + /// + IExtensionsOperations Extensions { get; } + + /// + /// Gets the ILocationsOperations + /// + ILocationsOperations Locations { get; } + + /// + /// Gets the IOperations + /// + IOperations Operations { get; } + + /// + /// Gets the IPrivateEndpointConnectionsOperations + /// + IPrivateEndpointConnectionsOperations PrivateEndpointConnections { get; } + + /// + /// Gets the IPrivateLinkResourcesOperations + /// + IPrivateLinkResourcesOperations PrivateLinkResources { get; } + + /// + /// Gets the IScriptActionsOperations + /// + IScriptActionsOperations ScriptActions { get; } + + /// + /// Gets the IScriptExecutionHistoryOperations + /// + IScriptExecutionHistoryOperations ScriptExecutionHistory { get; } + + /// + /// Gets the IVirtualMachinesOperations + /// + IVirtualMachinesOperations VirtualMachines { get; } + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ILocationsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ILocationsOperations.cs new file mode 100644 index 000000000000..dc25579ae7ee --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ILocationsOperations.cs @@ -0,0 +1,141 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// LocationsOperations operations. + /// + public partial interface ILocationsOperations + { + /// + /// Gets the capabilities for the specified location. + /// + /// + /// Gets the capabilities for the specified location. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetCapabilitiesWithHttpMessagesAsync(string location, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists the usages for the specified location. + /// + /// + /// Lists the usages for the specified location. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> ListUsagesWithHttpMessagesAsync(string location, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists the billingSpecs for the specified subscription and location. + /// + /// + /// Lists the billingSpecs for the specified subscription and location. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> ListBillingSpecsWithHttpMessagesAsync(string location, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Check the cluster name is available or not. + /// + /// + /// Check the cluster name is available or not. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The resource name. + /// + /// + /// The resource type + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> CheckNameAvailabilityWithHttpMessagesAsync(string location, string name = default(string), string type = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Validate the cluster create request spec is valid or not. + /// + /// + /// Validate the cluster create request spec is valid or not. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> ValidateClusterCreateRequestWithHttpMessagesAsync(string location, ClusterCreateRequestValidationParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IOperations.cs new file mode 100644 index 000000000000..a5c0a42c1089 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IOperations.cs @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IPrivateEndpointConnectionsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IPrivateEndpointConnectionsOperations.cs new file mode 100644 index 000000000000..016ec9646507 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IPrivateEndpointConnectionsOperations.cs @@ -0,0 +1,211 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// PrivateEndpointConnectionsOperations operations. + /// + public partial interface IPrivateEndpointConnectionsOperations + { + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The private link service connection state. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the specific private endpoint connection. + /// + /// + /// Gets the specific private endpoint connection. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The private link service connection state. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IPrivateLinkResourcesOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IPrivateLinkResourcesOperations.cs new file mode 100644 index 000000000000..5390a50d82a7 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IPrivateLinkResourcesOperations.cs @@ -0,0 +1,72 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// PrivateLinkResourcesOperations operations. + /// + public partial interface IPrivateLinkResourcesOperations + { + /// + /// Lists the private link resources in a HDInsight cluster. + /// + /// + /// Lists the private link resources in a HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the specific private link resource. + /// + /// + /// Gets the specific private link resource. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private link resource. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateLinkResourceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IScriptActionsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IScriptActionsOperations.cs new file mode 100644 index 000000000000..1d76ab683beb --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IScriptActionsOperations.cs @@ -0,0 +1,150 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// ScriptActionsOperations operations. + /// + public partial interface IScriptActionsOperations + { + /// + /// Deletes a specified persisted script action of the cluster. + /// + /// + /// Deletes a specified persisted script action of the cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the script. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string scriptName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the script execution detail for the given script execution ID. + /// + /// + /// Gets the script execution detail for the given script execution ID. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The script execution Id + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetExecutionDetailWithHttpMessagesAsync(string resourceGroupName, string clusterName, string scriptExecutionId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the async operation status of execution operation. + /// + /// + /// Gets the async operation status of execution operation. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetExecutionAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IScriptExecutionHistoryOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IScriptExecutionHistoryOperations.cs new file mode 100644 index 000000000000..442db5ed786a --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IScriptExecutionHistoryOperations.cs @@ -0,0 +1,92 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// ScriptExecutionHistoryOperations operations. + /// + public partial interface IScriptExecutionHistoryOperations + { + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Promotes the specified ad-hoc script execution to a persisted script. + /// + /// + /// Promotes the specified ad-hoc script execution to a persisted script. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The script execution Id + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task PromoteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string scriptExecutionId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/IVirtualMachinesOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/IVirtualMachinesOperations.cs new file mode 100644 index 000000000000..8e1470ab7b60 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/IVirtualMachinesOperations.cs @@ -0,0 +1,124 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// VirtualMachinesOperations operations. + /// + public partial interface IVirtualMachinesOperations + { + /// + /// Lists the HDInsight clusters hosts + /// + /// + /// Lists the HDInsight clusters hosts + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task>> ListHostsWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The list of hosts to restart + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task RestartHostsWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.IList hosts, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Gets the async operation status. + /// + /// + /// Gets the async operation status. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + System.Threading.Tasks.Task> GetAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The list of hosts to restart + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + System.Threading.Tasks.Task BeginRestartHostsWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.IList hosts, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/LocationsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/LocationsOperations.cs new file mode 100644 index 000000000000..ca4292b75cb8 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/LocationsOperations.cs @@ -0,0 +1,1066 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// LocationsOperations operations. + /// + internal partial class LocationsOperations : Microsoft.Rest.IServiceOperations, ILocationsOperations + { + /// + /// Initializes a new instance of the LocationsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal LocationsOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Gets the capabilities for the specified location. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetCapabilitiesWithHttpMessagesAsync(string location, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (location == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "location"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("location", location); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetCapabilities", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.HDInsight/locations/{location}/capabilities").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists the usages for the specified location. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> ListUsagesWithHttpMessagesAsync(string location, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (location == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "location"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("location", location); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListUsages", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.HDInsight/locations/{location}/usages").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists the billingSpecs for the specified subscription and location. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> ListBillingSpecsWithHttpMessagesAsync(string location, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (location == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "location"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("location", location); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListBillingSpecs", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.HDInsight/locations/{location}/billingSpecs").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Check the cluster name is available or not. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The resource name. + /// + /// + /// The resource type + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> CheckNameAvailabilityWithHttpMessagesAsync(string location, string name = default(string), string type = default(string), System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (location == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "location"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + NameAvailabilityCheckRequestParameters parameters = new NameAvailabilityCheckRequestParameters(); + if(name != null||type != null) + { + parameters.Name = name; + parameters.Type = type; + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("location", location); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.HDInsight/locations/{location}/checkNameAvailability").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Validate the cluster create request spec is valid or not. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> ValidateClusterCreateRequestWithHttpMessagesAsync(string location, ClusterCreateRequestValidationParameters parameters, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "parameters"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (location == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "location"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("location", location); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ValidateClusterCreateRequest", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.HDInsight/locations/{location}/validateCreateRequest").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/LocationsOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/LocationsOperationsExtensions.cs new file mode 100644 index 000000000000..e87a91de6513 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/LocationsOperationsExtensions.cs @@ -0,0 +1,181 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for LocationsOperations + /// + public static partial class LocationsOperationsExtensions + { + /// + /// Gets the capabilities for the specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + public static CapabilitiesResult GetCapabilities(this ILocationsOperations operations, string location) + { + return ((ILocationsOperations)operations).GetCapabilitiesAsync(location).GetAwaiter().GetResult(); + } + + /// + /// Gets the capabilities for the specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetCapabilitiesAsync(this ILocationsOperations operations, string location, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetCapabilitiesWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Lists the usages for the specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + public static UsagesListResult ListUsages(this ILocationsOperations operations, string location) + { + return ((ILocationsOperations)operations).ListUsagesAsync(location).GetAwaiter().GetResult(); + } + + /// + /// Lists the usages for the specified location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task ListUsagesAsync(this ILocationsOperations operations, string location, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListUsagesWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Lists the billingSpecs for the specified subscription and location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + public static BillingResponseListResult ListBillingSpecs(this ILocationsOperations operations, string location) + { + return ((ILocationsOperations)operations).ListBillingSpecsAsync(location).GetAwaiter().GetResult(); + } + + /// + /// Lists the billingSpecs for the specified subscription and location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task ListBillingSpecsAsync(this ILocationsOperations operations, string location, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListBillingSpecsWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Check the cluster name is available or not. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + public static NameAvailabilityCheckResult CheckNameAvailability(this ILocationsOperations operations, string location, string name = default(string), string type = default(string)) + { + return ((ILocationsOperations)operations).CheckNameAvailabilityAsync(location, name, type).GetAwaiter().GetResult(); + } + + /// + /// Check the cluster name is available or not. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CheckNameAvailabilityAsync(this ILocationsOperations operations, string location, string name = default(string), string type = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(location, name, type, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Validate the cluster create request spec is valid or not. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + public static ClusterCreateValidationResult ValidateClusterCreateRequest(this ILocationsOperations operations, string location, ClusterCreateRequestValidationParameters parameters) + { + return ((ILocationsOperations)operations).ValidateClusterCreateRequestAsync(location, parameters).GetAwaiter().GetResult(); + } + + /// + /// Validate the cluster create request spec is valid or not. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The Azure location (region) for which to make the request. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task ValidateClusterCreateRequestAsync(this ILocationsOperations operations, string location, ClusterCreateRequestValidationParameters parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ValidateClusterCreateRequestWithHttpMessagesAsync(location, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AaddsResourceDetails.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AaddsResourceDetails.cs new file mode 100644 index 000000000000..3649a03d60a7 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AaddsResourceDetails.cs @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The Azure active directory domain service resource details. + /// + public partial class AaddsResourceDetails + { + /// + /// Initializes a new instance of the AaddsResourceDetails class. + /// + public AaddsResourceDetails() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AaddsResourceDetails class. + /// + + /// The Azure active directory domain service name. + /// + + /// This indicates whether initial sync complete or not. + /// + + /// This indicates whether enable ldaps or not. + /// + + /// The base 64 format string of public ldap certificate. + /// + + /// The resource id of azure active directory domain service. + /// + + /// The subnet resource id. + /// + + /// The tenant id of azure active directory domain service . + /// + public AaddsResourceDetails(string domainName = default(string), bool? initialSyncComplete = default(bool?), bool? ldapsEnabled = default(bool?), string ldapsPublicCertificateInBase64 = default(string), string resourceId = default(string), string subnetId = default(string), string tenantId = default(string)) + + { + this.DomainName = domainName; + this.InitialSyncComplete = initialSyncComplete; + this.LdapsEnabled = ldapsEnabled; + this.LdapsPublicCertificateInBase64 = ldapsPublicCertificateInBase64; + this.ResourceId = resourceId; + this.SubnetId = subnetId; + this.TenantId = tenantId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the Azure active directory domain service name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "domainName")] + public string DomainName {get; set; } + + /// + /// Gets or sets this indicates whether initial sync complete or not. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "initialSyncComplete")] + public bool? InitialSyncComplete {get; set; } + + /// + /// Gets or sets this indicates whether enable ldaps or not. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "ldapsEnabled")] + public bool? LdapsEnabled {get; set; } + + /// + /// Gets or sets the base 64 format string of public ldap certificate. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "ldapsPublicCertificateInBase64")] + public string LdapsPublicCertificateInBase64 {get; set; } + + /// + /// Gets or sets the resource id of azure active directory domain service. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceId")] + public string ResourceId {get; set; } + + /// + /// Gets or sets the subnet resource id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "subnetId")] + public string SubnetId {get; set; } + + /// + /// Gets or sets the tenant id of azure active directory domain service . + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tenantId")] + public string TenantId {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Application.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Application.cs new file mode 100644 index 000000000000..806a9b6057a4 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Application.cs @@ -0,0 +1,90 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The HDInsight cluster application + /// + public partial class Application : ProxyResource + { + /// + /// Initializes a new instance of the Application class. + /// + public Application() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Application class. + /// + + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + + /// The name of the resource + /// + + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + + /// The ETag for the application + /// + + /// The tags for the application. + /// + + /// The properties of the application. + /// + + /// Metadata pertaining to creation and last modification of the resource. + /// + public Application(string id = default(string), string name = default(string), string type = default(string), string etag = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), ApplicationProperties properties = default(ApplicationProperties), SystemData systemData = default(SystemData)) + + : base(id, name, type) + { + this.Etag = etag; + this.Tags = tags; + this.Properties = properties; + this.SystemData = systemData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the ETag for the application + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "etag")] + public string Etag {get; set; } + + /// + /// Gets or sets the tags for the application. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] + public System.Collections.Generic.IDictionary Tags {get; set; } + + /// + /// Gets or sets the properties of the application. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + public ApplicationProperties Properties {get; set; } + + /// + /// Gets metadata pertaining to creation and last modification of the resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "systemData")] + public SystemData SystemData {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationGetEndpoint.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationGetEndpoint.cs new file mode 100644 index 000000000000..2e8117c0b7ad --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationGetEndpoint.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Gets the application SSH endpoint + /// + public partial class ApplicationGetEndpoint + { + /// + /// Initializes a new instance of the ApplicationGetEndpoint class. + /// + public ApplicationGetEndpoint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApplicationGetEndpoint class. + /// + + /// The location of the endpoint. + /// + + /// The destination port to connect to. + /// + + /// The public port to connect to. + /// + + /// The private ip address of the endpoint. + /// + public ApplicationGetEndpoint(string location = default(string), int? destinationPort = default(int?), int? publicPort = default(int?), string privateIPAddress = default(string)) + + { + this.Location = location; + this.DestinationPort = destinationPort; + this.PublicPort = publicPort; + this.PrivateIPAddress = privateIPAddress; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the location of the endpoint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + public string Location {get; set; } + + /// + /// Gets or sets the destination port to connect to. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "destinationPort")] + public int? DestinationPort {get; set; } + + /// + /// Gets or sets the public port to connect to. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "publicPort")] + public int? PublicPort {get; set; } + + /// + /// Gets or sets the private ip address of the endpoint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateIPAddress")] + public string PrivateIPAddress {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationGetHttpsEndpoint.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationGetHttpsEndpoint.cs new file mode 100644 index 000000000000..d3d3f52d453f --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationGetHttpsEndpoint.cs @@ -0,0 +1,108 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Gets the application HTTP endpoints. + /// + public partial class ApplicationGetHttpsEndpoint + { + /// + /// Initializes a new instance of the ApplicationGetHttpsEndpoint class. + /// + public ApplicationGetHttpsEndpoint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApplicationGetHttpsEndpoint class. + /// + + /// The list of access modes for the application. + /// + + /// The location of the endpoint. + /// + + /// The destination port to connect to. + /// + + /// The public port to connect to. + /// + + /// The private ip address of the endpoint. + /// + + /// The subdomain suffix of the application. + /// + + /// The value indicates whether to disable GatewayAuth. + /// + public ApplicationGetHttpsEndpoint(System.Collections.Generic.IList accessModes = default(System.Collections.Generic.IList), string location = default(string), int? destinationPort = default(int?), int? publicPort = default(int?), string privateIPAddress = default(string), string subDomainSuffix = default(string), bool? disableGatewayAuth = default(bool?)) + + { + this.AccessModes = accessModes; + this.Location = location; + this.DestinationPort = destinationPort; + this.PublicPort = publicPort; + this.PrivateIPAddress = privateIPAddress; + this.SubDomainSuffix = subDomainSuffix; + this.DisableGatewayAuth = disableGatewayAuth; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of access modes for the application. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "accessModes")] + public System.Collections.Generic.IList AccessModes {get; set; } + + /// + /// Gets the location of the endpoint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + public string Location {get; private set; } + + /// + /// Gets or sets the destination port to connect to. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "destinationPort")] + public int? DestinationPort {get; set; } + + /// + /// Gets the public port to connect to. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "publicPort")] + public int? PublicPort {get; private set; } + + /// + /// Gets or sets the private ip address of the endpoint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateIPAddress")] + public string PrivateIPAddress {get; set; } + + /// + /// Gets or sets the subdomain suffix of the application. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "subDomainSuffix")] + public string SubDomainSuffix {get; set; } + + /// + /// Gets or sets the value indicates whether to disable GatewayAuth. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "disableGatewayAuth")] + public bool? DisableGatewayAuth {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationProperties.cs new file mode 100644 index 000000000000..9df04823a28a --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ApplicationProperties.cs @@ -0,0 +1,158 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The HDInsight cluster application GET response. + /// + public partial class ApplicationProperties + { + /// + /// Initializes a new instance of the ApplicationProperties class. + /// + public ApplicationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ApplicationProperties class. + /// + + /// The list of roles in the cluster. + /// + + /// The list of install script actions. + /// + + /// The list of uninstall script actions. + /// + + /// The list of application HTTPS endpoints. + /// + + /// The list of application SSH endpoints. + /// + + /// The provisioning state of the application. + /// + + /// The application type. + /// + + /// The application state. + /// + + /// The list of errors. + /// + + /// The application create date time. + /// + + /// The marketplace identifier. + /// + + /// The private link configurations. + /// + public ApplicationProperties(ComputeProfile computeProfile = default(ComputeProfile), System.Collections.Generic.IList installScriptActions = default(System.Collections.Generic.IList), System.Collections.Generic.IList uninstallScriptActions = default(System.Collections.Generic.IList), System.Collections.Generic.IList httpsEndpoints = default(System.Collections.Generic.IList), System.Collections.Generic.IList sshEndpoints = default(System.Collections.Generic.IList), string provisioningState = default(string), string applicationType = default(string), string applicationState = default(string), System.Collections.Generic.IList errors = default(System.Collections.Generic.IList), string createdDate = default(string), string marketplaceIdentifier = default(string), System.Collections.Generic.IList privateLinkConfigurations = default(System.Collections.Generic.IList)) + + { + this.ComputeProfile = computeProfile; + this.InstallScriptActions = installScriptActions; + this.UninstallScriptActions = uninstallScriptActions; + this.HttpsEndpoints = httpsEndpoints; + this.SshEndpoints = sshEndpoints; + this.ProvisioningState = provisioningState; + this.ApplicationType = applicationType; + this.ApplicationState = applicationState; + this.Errors = errors; + this.CreatedDate = createdDate; + this.MarketplaceIdentifier = marketplaceIdentifier; + this.PrivateLinkConfigurations = privateLinkConfigurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of roles in the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "computeProfile")] + public ComputeProfile ComputeProfile {get; set; } + + /// + /// Gets or sets the list of install script actions. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "installScriptActions")] + public System.Collections.Generic.IList InstallScriptActions {get; set; } + + /// + /// Gets or sets the list of uninstall script actions. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "uninstallScriptActions")] + public System.Collections.Generic.IList UninstallScriptActions {get; set; } + + /// + /// Gets or sets the list of application HTTPS endpoints. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "httpsEndpoints")] + public System.Collections.Generic.IList HttpsEndpoints {get; set; } + + /// + /// Gets or sets the list of application SSH endpoints. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "sshEndpoints")] + public System.Collections.Generic.IList SshEndpoints {get; set; } + + /// + /// Gets the provisioning state of the application. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState {get; private set; } + + /// + /// Gets or sets the application type. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "applicationType")] + public string ApplicationType {get; set; } + + /// + /// Gets the application state. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "applicationState")] + public string ApplicationState {get; private set; } + + /// + /// Gets or sets the list of errors. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "errors")] + public System.Collections.Generic.IList Errors {get; set; } + + /// + /// Gets the application create date time. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "createdDate")] + public string CreatedDate {get; private set; } + + /// + /// Gets the marketplace identifier. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "marketplaceIdentifier")] + public string MarketplaceIdentifier {get; private set; } + + /// + /// Gets or sets the private link configurations. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateLinkConfigurations")] + public System.Collections.Generic.IList PrivateLinkConfigurations {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AsyncOperationResult.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AsyncOperationResult.cs new file mode 100644 index 000000000000..dc6ea75f6203 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AsyncOperationResult.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The azure async operation response. + /// + public partial class AsyncOperationResult + { + /// + /// Initializes a new instance of the AsyncOperationResult class. + /// + public AsyncOperationResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AsyncOperationResult class. + /// + + /// The async operation state. + /// Possible values include: 'InProgress', 'Succeeded', 'Failed' + + /// The operation error information. + /// + public AsyncOperationResult(string status = default(string), Errors error = default(Errors)) + + { + this.Status = status; + this.Error = error; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the async operation state. Possible values include: 'InProgress', 'Succeeded', 'Failed' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "status")] + public string Status {get; set; } + + /// + /// Gets or sets the operation error information. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "error")] + public Errors Error {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AsyncOperationState.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AsyncOperationState.cs new file mode 100644 index 000000000000..6b93eaf5637a --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AsyncOperationState.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for AsyncOperationState. + /// + + + public static class AsyncOperationState + { + public const string InProgress = "InProgress"; + public const string Succeeded = "Succeeded"; + public const string Failed = "Failed"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Autoscale.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Autoscale.cs new file mode 100644 index 000000000000..b866d17c642d --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Autoscale.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The autoscale request parameters + /// + public partial class Autoscale + { + /// + /// Initializes a new instance of the Autoscale class. + /// + public Autoscale() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Autoscale class. + /// + + /// Parameters for load-based autoscale + /// + + /// Parameters for schedule-based autoscale + /// + public Autoscale(AutoscaleCapacity capacity = default(AutoscaleCapacity), AutoscaleRecurrence recurrence = default(AutoscaleRecurrence)) + + { + this.Capacity = capacity; + this.Recurrence = recurrence; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets parameters for load-based autoscale + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "capacity")] + public AutoscaleCapacity Capacity {get; set; } + + /// + /// Gets or sets parameters for schedule-based autoscale + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "recurrence")] + public AutoscaleRecurrence Recurrence {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleCapacity.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleCapacity.cs new file mode 100644 index 000000000000..821b06b62154 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleCapacity.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The load-based autoscale request parameters + /// + public partial class AutoscaleCapacity + { + /// + /// Initializes a new instance of the AutoscaleCapacity class. + /// + public AutoscaleCapacity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AutoscaleCapacity class. + /// + + /// The minimum instance count of the cluster + /// + + /// The maximum instance count of the cluster + /// + public AutoscaleCapacity(int? minInstanceCount = default(int?), int? maxInstanceCount = default(int?)) + + { + this.MinInstanceCount = minInstanceCount; + this.MaxInstanceCount = maxInstanceCount; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the minimum instance count of the cluster + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "minInstanceCount")] + public int? MinInstanceCount {get; set; } + + /// + /// Gets or sets the maximum instance count of the cluster + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "maxInstanceCount")] + public int? MaxInstanceCount {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleConfigurationUpdateParameter.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleConfigurationUpdateParameter.cs new file mode 100644 index 000000000000..565d29e141f4 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleConfigurationUpdateParameter.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The autoscale configuration update parameter. + /// + public partial class AutoscaleConfigurationUpdateParameter + { + /// + /// Initializes a new instance of the AutoscaleConfigurationUpdateParameter class. + /// + public AutoscaleConfigurationUpdateParameter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AutoscaleConfigurationUpdateParameter class. + /// + + /// The autoscale configuration. + /// + public AutoscaleConfigurationUpdateParameter(Autoscale autoscale = default(Autoscale)) + + { + this.Autoscale = autoscale; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the autoscale configuration. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "autoscale")] + public Autoscale Autoscale {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleRecurrence.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleRecurrence.cs new file mode 100644 index 000000000000..e81776dd3f27 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleRecurrence.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Schedule-based autoscale request parameters + /// + public partial class AutoscaleRecurrence + { + /// + /// Initializes a new instance of the AutoscaleRecurrence class. + /// + public AutoscaleRecurrence() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AutoscaleRecurrence class. + /// + + /// The time zone for the autoscale schedule times + /// + + /// Array of schedule-based autoscale rules + /// + public AutoscaleRecurrence(string timeZone = default(string), System.Collections.Generic.IList schedule = default(System.Collections.Generic.IList)) + + { + this.TimeZone = timeZone; + this.Schedule = schedule; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the time zone for the autoscale schedule times + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeZone")] + public string TimeZone {get; set; } + + /// + /// Gets or sets array of schedule-based autoscale rules + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "schedule")] + public System.Collections.Generic.IList Schedule {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleSchedule.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleSchedule.cs new file mode 100644 index 000000000000..6cc4647976eb --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleSchedule.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Parameters for a schedule-based autoscale rule, consisting of an array of + /// days + a time and capacity + /// + public partial class AutoscaleSchedule + { + /// + /// Initializes a new instance of the AutoscaleSchedule class. + /// + public AutoscaleSchedule() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AutoscaleSchedule class. + /// + + /// Days of the week for a schedule-based autoscale rule + /// + + /// Time and capacity for a schedule-based autoscale rule + /// + public AutoscaleSchedule(System.Collections.Generic.IList days = default(System.Collections.Generic.IList), AutoscaleTimeAndCapacity timeAndCapacity = default(AutoscaleTimeAndCapacity)) + + { + this.Days = days; + this.TimeAndCapacity = timeAndCapacity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets days of the week for a schedule-based autoscale rule + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "days")] + public System.Collections.Generic.IList Days {get; set; } + + /// + /// Gets or sets time and capacity for a schedule-based autoscale rule + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "timeAndCapacity")] + public AutoscaleTimeAndCapacity TimeAndCapacity {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleTimeAndCapacity.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleTimeAndCapacity.cs new file mode 100644 index 000000000000..373122e8567b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AutoscaleTimeAndCapacity.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Time and capacity request parameters + /// + public partial class AutoscaleTimeAndCapacity + { + /// + /// Initializes a new instance of the AutoscaleTimeAndCapacity class. + /// + public AutoscaleTimeAndCapacity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AutoscaleTimeAndCapacity class. + /// + + /// 24-hour time in the form xx:xx + /// + + /// The minimum instance count of the cluster + /// + + /// The maximum instance count of the cluster + /// + public AutoscaleTimeAndCapacity(string time = default(string), int? minInstanceCount = default(int?), int? maxInstanceCount = default(int?)) + + { + this.Time = time; + this.MinInstanceCount = minInstanceCount; + this.MaxInstanceCount = maxInstanceCount; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets 24-hour time in the form xx:xx + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "time")] + public string Time {get; set; } + + /// + /// Gets or sets the minimum instance count of the cluster + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "minInstanceCount")] + public int? MinInstanceCount {get; set; } + + /// + /// Gets or sets the maximum instance count of the cluster + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "maxInstanceCount")] + public int? MaxInstanceCount {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorRequest.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorRequest.cs new file mode 100644 index 000000000000..7805d384aac1 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorRequest.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The azure monitor parameters. + /// + public partial class AzureMonitorRequest + { + /// + /// Initializes a new instance of the AzureMonitorRequest class. + /// + public AzureMonitorRequest() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureMonitorRequest class. + /// + + /// The Log Analytics workspace ID. + /// + + /// The Log Analytics workspace key. + /// + + /// The selected configurations. + /// + public AzureMonitorRequest(string workspaceId = default(string), string primaryKey = default(string), AzureMonitorSelectedConfigurations selectedConfigurations = default(AzureMonitorSelectedConfigurations)) + + { + this.WorkspaceId = workspaceId; + this.PrimaryKey = primaryKey; + this.SelectedConfigurations = selectedConfigurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the Log Analytics workspace ID. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "workspaceId")] + public string WorkspaceId {get; set; } + + /// + /// Gets or sets the Log Analytics workspace key. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "primaryKey")] + public string PrimaryKey {get; set; } + + /// + /// Gets or sets the selected configurations. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "selectedConfigurations")] + public AzureMonitorSelectedConfigurations SelectedConfigurations {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorResponse.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorResponse.cs new file mode 100644 index 000000000000..1c9d4fef9bff --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorResponse.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The azure monitor status response. + /// + public partial class AzureMonitorResponse + { + /// + /// Initializes a new instance of the AzureMonitorResponse class. + /// + public AzureMonitorResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureMonitorResponse class. + /// + + /// The status of the monitor on the HDInsight cluster. + /// + + /// The workspace ID of the monitor on the HDInsight cluster. + /// + + /// The selected configurations. + /// + public AzureMonitorResponse(bool? clusterMonitoringEnabled = default(bool?), string workspaceId = default(string), AzureMonitorSelectedConfigurations selectedConfigurations = default(AzureMonitorSelectedConfigurations)) + + { + this.ClusterMonitoringEnabled = clusterMonitoringEnabled; + this.WorkspaceId = workspaceId; + this.SelectedConfigurations = selectedConfigurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the status of the monitor on the HDInsight cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterMonitoringEnabled")] + public bool? ClusterMonitoringEnabled {get; set; } + + /// + /// Gets or sets the workspace ID of the monitor on the HDInsight cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "workspaceId")] + public string WorkspaceId {get; set; } + + /// + /// Gets or sets the selected configurations. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "selectedConfigurations")] + public AzureMonitorSelectedConfigurations SelectedConfigurations {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorSelectedConfigurations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorSelectedConfigurations.cs new file mode 100644 index 000000000000..884ced3b6e25 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorSelectedConfigurations.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The selected configurations for azure monitor. + /// + public partial class AzureMonitorSelectedConfigurations + { + /// + /// Initializes a new instance of the AzureMonitorSelectedConfigurations class. + /// + public AzureMonitorSelectedConfigurations() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureMonitorSelectedConfigurations class. + /// + + /// The configuration version. + /// + + /// The global configurations of selected configurations. + /// + + /// The table list. + /// + public AzureMonitorSelectedConfigurations(string configurationVersion = default(string), System.Collections.Generic.IDictionary globalConfigurations = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList tableList = default(System.Collections.Generic.IList)) + + { + this.ConfigurationVersion = configurationVersion; + this.GlobalConfigurations = globalConfigurations; + this.TableList = tableList; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the configuration version. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "configurationVersion")] + public string ConfigurationVersion {get; set; } + + /// + /// Gets or sets the global configurations of selected configurations. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "globalConfigurations")] + public System.Collections.Generic.IDictionary GlobalConfigurations {get; set; } + + /// + /// Gets or sets the table list. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tableList")] + public System.Collections.Generic.IList TableList {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorTableConfiguration.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorTableConfiguration.cs new file mode 100644 index 000000000000..793668a2799e --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/AzureMonitorTableConfiguration.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The table configuration for the Log Analytics integration. + /// + public partial class AzureMonitorTableConfiguration + { + /// + /// Initializes a new instance of the AzureMonitorTableConfiguration class. + /// + public AzureMonitorTableConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureMonitorTableConfiguration class. + /// + + /// The name. + /// + public AzureMonitorTableConfiguration(string name = default(string)) + + { + this.Name = name; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingMeters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingMeters.cs new file mode 100644 index 000000000000..c69b467d3852 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingMeters.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The billing meters. + /// + public partial class BillingMeters + { + /// + /// Initializes a new instance of the BillingMeters class. + /// + public BillingMeters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BillingMeters class. + /// + + /// The virtual machine sizes. + /// + + /// The HDInsight meter guid. + /// + + /// The unit of meter, VMHours or CoreHours. + /// + public BillingMeters(string meterParameter = default(string), string meter = default(string), string unit = default(string)) + + { + this.MeterParameter = meterParameter; + this.Meter = meter; + this.Unit = unit; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the virtual machine sizes. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "meterParameter")] + public string MeterParameter {get; set; } + + /// + /// Gets or sets the HDInsight meter guid. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "meter")] + public string Meter {get; set; } + + /// + /// Gets or sets the unit of meter, VMHours or CoreHours. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + public string Unit {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingResources.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingResources.cs new file mode 100644 index 000000000000..437c0836a79a --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingResources.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The billing resources. + /// + public partial class BillingResources + { + /// + /// Initializes a new instance of the BillingResources class. + /// + public BillingResources() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BillingResources class. + /// + + /// The region or location. + /// + + /// The billing meter information. + /// + + /// The managed disk billing information. + /// + public BillingResources(string region = default(string), System.Collections.Generic.IList billingMeters = default(System.Collections.Generic.IList), System.Collections.Generic.IList diskBillingMeters = default(System.Collections.Generic.IList)) + + { + this.Region = region; + this.BillingMeters = billingMeters; + this.DiskBillingMeters = diskBillingMeters; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the region or location. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "region")] + public string Region {get; set; } + + /// + /// Gets or sets the billing meter information. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "billingMeters")] + public System.Collections.Generic.IList BillingMeters {get; set; } + + /// + /// Gets or sets the managed disk billing information. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "diskBillingMeters")] + public System.Collections.Generic.IList DiskBillingMeters {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingResponseListResult.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingResponseListResult.cs new file mode 100644 index 000000000000..b71bfddc1273 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/BillingResponseListResult.cs @@ -0,0 +1,91 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The response for the operation to get regional billingSpecs for a + /// subscription. + /// + public partial class BillingResponseListResult + { + /// + /// Initializes a new instance of the BillingResponseListResult class. + /// + public BillingResponseListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the BillingResponseListResult class. + /// + + /// The virtual machine sizes to include or exclude. + /// + + /// The vm sizes which enable encryption at host. + /// + + /// The virtual machine filtering mode. Effectively this can enabling or + /// disabling the virtual machine sizes in a particular set. + /// + + /// The vm size properties. + /// + + /// The billing and managed disk billing resources for a region. + /// + public BillingResponseListResult(System.Collections.Generic.IList vmSizes = default(System.Collections.Generic.IList), System.Collections.Generic.IList vmSizesWithEncryptionAtHost = default(System.Collections.Generic.IList), System.Collections.Generic.IList vmSizeFilters = default(System.Collections.Generic.IList), System.Collections.Generic.IList vmSizeProperties = default(System.Collections.Generic.IList), System.Collections.Generic.IList billingResources = default(System.Collections.Generic.IList)) + + { + this.VMSizes = vmSizes; + this.VMSizesWithEncryptionAtHost = vmSizesWithEncryptionAtHost; + this.VMSizeFilters = vmSizeFilters; + this.VMSizeProperties = vmSizeProperties; + this.BillingResources = billingResources; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the virtual machine sizes to include or exclude. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "vmSizes")] + public System.Collections.Generic.IList VMSizes {get; set; } + + /// + /// Gets or sets the vm sizes which enable encryption at host. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "vmSizesWithEncryptionAtHost")] + public System.Collections.Generic.IList VMSizesWithEncryptionAtHost {get; set; } + + /// + /// Gets or sets the virtual machine filtering mode. Effectively this can + /// enabling or disabling the virtual machine sizes in a particular set. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "vmSizeFilters")] + public System.Collections.Generic.IList VMSizeFilters {get; set; } + + /// + /// Gets the vm size properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "vmSizeProperties")] + public System.Collections.Generic.IList VMSizeProperties {get; private set; } + + /// + /// Gets or sets the billing and managed disk billing resources for a region. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "billingResources")] + public System.Collections.Generic.IList BillingResources {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/CapabilitiesResult.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/CapabilitiesResult.cs new file mode 100644 index 000000000000..8425cadd196b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/CapabilitiesResult.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The Get Capabilities operation response. + /// + public partial class CapabilitiesResult + { + /// + /// Initializes a new instance of the CapabilitiesResult class. + /// + public CapabilitiesResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CapabilitiesResult class. + /// + + /// The version capability. + /// + + /// The virtual machine size compatibility features. + /// + + /// The capability features. + /// + + /// The quota capability. + /// + public CapabilitiesResult(System.Collections.Generic.IDictionary versions = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IDictionary regions = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList features = default(System.Collections.Generic.IList), QuotaCapability quota = default(QuotaCapability)) + + { + this.Versions = versions; + this.Regions = regions; + this.Features = features; + this.Quota = quota; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the version capability. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "versions")] + public System.Collections.Generic.IDictionary Versions {get; set; } + + /// + /// Gets or sets the virtual machine size compatibility features. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "regions")] + public System.Collections.Generic.IDictionary Regions {get; set; } + + /// + /// Gets or sets the capability features. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "features")] + public System.Collections.Generic.IList Features {get; set; } + + /// + /// Gets the quota capability. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "quota")] + public QuotaCapability Quota {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClientGroupInfo.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClientGroupInfo.cs new file mode 100644 index 000000000000..6ceca1b0730b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClientGroupInfo.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The information of AAD security group. + /// + public partial class ClientGroupInfo + { + /// + /// Initializes a new instance of the ClientGroupInfo class. + /// + public ClientGroupInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClientGroupInfo class. + /// + + /// The AAD security group name. + /// + + /// The AAD security group id. + /// + public ClientGroupInfo(string groupName = default(string), string groupId = default(string)) + + { + this.GroupName = groupName; + this.GroupId = groupId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the AAD security group name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "groupName")] + public string GroupName {get; set; } + + /// + /// Gets or sets the AAD security group id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "groupId")] + public string GroupId {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Cluster.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Cluster.cs new file mode 100644 index 000000000000..2ef1275567f1 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Cluster.cs @@ -0,0 +1,124 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The HDInsight cluster. + /// + public partial class Cluster : TrackedResource + { + /// + /// Initializes a new instance of the Cluster class. + /// + public Cluster() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Cluster class. + /// + + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + + /// The name of the resource + /// + + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + + /// Resource tags. + /// + + /// The geo-location where the resource lives + /// + + /// The ETag for the resource + /// + + /// The availability zones. + /// + + /// The properties of the cluster. + /// + + /// The identity of the cluster, if configured. + /// + + /// Metadata pertaining to creation and last modification of the resource. + /// + public Cluster(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), string etag = default(string), System.Collections.Generic.IList zones = default(System.Collections.Generic.IList), ClusterGetProperties properties = default(ClusterGetProperties), ClusterIdentity identity = default(ClusterIdentity), SystemData systemData = default(SystemData)) + + : base(location, id, name, type, tags) + { + this.Etag = etag; + this.Zones = zones; + this.Properties = properties; + this.Identity = identity; + this.SystemData = systemData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the ETag for the resource + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "etag")] + public string Etag {get; set; } + + /// + /// Gets or sets the availability zones. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "zones")] + public System.Collections.Generic.IList Zones {get; set; } + + /// + /// Gets or sets the properties of the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + public ClusterGetProperties Properties {get; set; } + + /// + /// Gets or sets the identity of the cluster, if configured. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "identity")] + public ClusterIdentity Identity {get; set; } + + /// + /// Gets metadata pertaining to creation and last modification of the resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "systemData")] + public SystemData SystemData {get; private set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + + + if (this.Properties != null) + { + this.Properties.Validate(); + } + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterConfigurations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterConfigurations.cs new file mode 100644 index 000000000000..de123491d466 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterConfigurations.cs @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The configuration object for the specified cluster. + /// + public partial class ClusterConfigurations + { + /// + /// Initializes a new instance of the ClusterConfigurations class. + /// + public ClusterConfigurations() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterConfigurations class. + /// + + /// The configuration object for the specified configuration for the specified + /// cluster. + /// + public ClusterConfigurations(System.Collections.Generic.IDictionary configurations = default(System.Collections.Generic.IDictionary)) + + { + this.Configurations = configurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the configuration object for the specified configuration for + /// the specified cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "configurations")] + public System.Collections.Generic.IDictionary Configurations {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateParametersExtended.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateParametersExtended.cs new file mode 100644 index 000000000000..841f8c0d2e70 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateParametersExtended.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The CreateCluster request parameters. + /// + public partial class ClusterCreateParametersExtended + { + /// + /// Initializes a new instance of the ClusterCreateParametersExtended class. + /// + public ClusterCreateParametersExtended() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterCreateParametersExtended class. + /// + + /// The location of the cluster. + /// + + /// The resource tags. + /// + + /// The availability zones. + /// + + /// The cluster create parameters. + /// + + /// The identity of the cluster, if configured. + /// + public ClusterCreateParametersExtended(string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList zones = default(System.Collections.Generic.IList), ClusterCreateProperties properties = default(ClusterCreateProperties), ClusterIdentity identity = default(ClusterIdentity)) + + { + this.Location = location; + this.Tags = tags; + this.Zones = zones; + this.Properties = properties; + this.Identity = identity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the location of the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + public string Location {get; set; } + + /// + /// Gets or sets the resource tags. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] + public System.Collections.Generic.IDictionary Tags {get; set; } + + /// + /// Gets or sets the availability zones. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "zones")] + public System.Collections.Generic.IList Zones {get; set; } + + /// + /// Gets or sets the cluster create parameters. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + public ClusterCreateProperties Properties {get; set; } + + /// + /// Gets or sets the identity of the cluster, if configured. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "identity")] + public ClusterIdentity Identity {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateProperties.cs new file mode 100644 index 000000000000..2865fe24e2d8 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateProperties.cs @@ -0,0 +1,178 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The cluster create parameters. + /// + public partial class ClusterCreateProperties + { + /// + /// Initializes a new instance of the ClusterCreateProperties class. + /// + public ClusterCreateProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterCreateProperties class. + /// + + /// The version of the cluster. + /// + + /// The type of operating system. + /// Possible values include: 'Windows', 'Linux' + + /// The cluster tier. + /// Possible values include: 'Standard', 'Premium' + + /// The cluster definition. + /// + + /// The cluster kafka rest proxy configuration. + /// + + /// The security profile. + /// + + /// The compute profile. + /// + + /// The storage profile. + /// + + /// The disk encryption properties. + /// + + /// The encryption-in-transit properties. + /// + + /// The minimal supported tls version. + /// + + /// The network properties. + /// + + /// The compute isolation properties. + /// + + /// The private link configurations. + /// + public ClusterCreateProperties(string clusterVersion = default(string), string osType = default(string), string tier = default(string), ClusterDefinition clusterDefinition = default(ClusterDefinition), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), StorageProfile storageProfile = default(StorageProfile), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties), EncryptionInTransitProperties encryptionInTransitProperties = default(EncryptionInTransitProperties), string minSupportedTlsVersion = default(string), NetworkProperties networkProperties = default(NetworkProperties), ComputeIsolationProperties computeIsolationProperties = default(ComputeIsolationProperties), System.Collections.Generic.IList privateLinkConfigurations = default(System.Collections.Generic.IList)) + + { + this.ClusterVersion = clusterVersion; + this.OSType = osType; + this.Tier = tier; + this.ClusterDefinition = clusterDefinition; + this.KafkaRestProperties = kafkaRestProperties; + this.SecurityProfile = securityProfile; + this.ComputeProfile = computeProfile; + this.StorageProfile = storageProfile; + this.DiskEncryptionProperties = diskEncryptionProperties; + this.EncryptionInTransitProperties = encryptionInTransitProperties; + this.MinSupportedTlsVersion = minSupportedTlsVersion; + this.NetworkProperties = networkProperties; + this.ComputeIsolationProperties = computeIsolationProperties; + this.PrivateLinkConfigurations = privateLinkConfigurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the version of the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterVersion")] + public string ClusterVersion {get; set; } + + /// + /// Gets or sets the type of operating system. Possible values include: 'Windows', 'Linux' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "osType")] + public string OSType {get; set; } + + /// + /// Gets or sets the cluster tier. Possible values include: 'Standard', 'Premium' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tier")] + public string Tier {get; set; } + + /// + /// Gets or sets the cluster definition. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterDefinition")] + public ClusterDefinition ClusterDefinition {get; set; } + + /// + /// Gets or sets the cluster kafka rest proxy configuration. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "kafkaRestProperties")] + public KafkaRestProperties KafkaRestProperties {get; set; } + + /// + /// Gets or sets the security profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "securityProfile")] + public SecurityProfile SecurityProfile {get; set; } + + /// + /// Gets or sets the compute profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "computeProfile")] + public ComputeProfile ComputeProfile {get; set; } + + /// + /// Gets or sets the storage profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "storageProfile")] + public StorageProfile StorageProfile {get; set; } + + /// + /// Gets or sets the disk encryption properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "diskEncryptionProperties")] + public DiskEncryptionProperties DiskEncryptionProperties {get; set; } + + /// + /// Gets or sets the encryption-in-transit properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "encryptionInTransitProperties")] + public EncryptionInTransitProperties EncryptionInTransitProperties {get; set; } + + /// + /// Gets or sets the minimal supported tls version. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "minSupportedTlsVersion")] + public string MinSupportedTlsVersion {get; set; } + + /// + /// Gets or sets the network properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "networkProperties")] + public NetworkProperties NetworkProperties {get; set; } + + /// + /// Gets or sets the compute isolation properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "computeIsolationProperties")] + public ComputeIsolationProperties ComputeIsolationProperties {get; set; } + + /// + /// Gets or sets the private link configurations. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateLinkConfigurations")] + public System.Collections.Generic.IList PrivateLinkConfigurations {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateRequestValidationParameters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateRequestValidationParameters.cs new file mode 100644 index 000000000000..107d0cfa7886 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateRequestValidationParameters.cs @@ -0,0 +1,94 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The cluster create request specification. + /// + public partial class ClusterCreateRequestValidationParameters : ClusterCreateParametersExtended + { + /// + /// Initializes a new instance of the ClusterCreateRequestValidationParameters class. + /// + public ClusterCreateRequestValidationParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterCreateRequestValidationParameters class. + /// + + /// The location of the cluster. + /// + + /// The resource tags. + /// + + /// The availability zones. + /// + + /// The cluster create parameters. + /// + + /// The identity of the cluster, if configured. + /// + + /// The cluster name. + /// + + /// The resource type. + /// + + /// The tenant id. + /// + + /// This indicates whether fetch Aadds resource or not. + /// + public ClusterCreateRequestValidationParameters(string location = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary), System.Collections.Generic.IList zones = default(System.Collections.Generic.IList), ClusterCreateProperties properties = default(ClusterCreateProperties), ClusterIdentity identity = default(ClusterIdentity), string name = default(string), string type = default(string), string tenantId = default(string), bool? fetchAaddsResource = default(bool?)) + + : base(location, tags, zones, properties, identity) + { + this.Name = name; + this.Type = type; + this.TenantId = tenantId; + this.FetchAaddsResource = fetchAaddsResource; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the cluster name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the resource type. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type {get; set; } + + /// + /// Gets or sets the tenant id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tenantId")] + public string TenantId {get; set; } + + /// + /// Gets or sets this indicates whether fetch Aadds resource or not. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "fetchAaddsResource")] + public bool? FetchAaddsResource {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateValidationResult.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateValidationResult.cs new file mode 100644 index 000000000000..846122fdba20 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterCreateValidationResult.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The response of cluster create request validation. + /// + public partial class ClusterCreateValidationResult + { + /// + /// Initializes a new instance of the ClusterCreateValidationResult class. + /// + public ClusterCreateValidationResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterCreateValidationResult class. + /// + + /// The validation errors. + /// + + /// The validation warnings. + /// + + /// The estimated creation duration. + /// + + /// The Azure active directory domain service resource details. + /// + public ClusterCreateValidationResult(System.Collections.Generic.IList validationErrors = default(System.Collections.Generic.IList), System.Collections.Generic.IList validationWarnings = default(System.Collections.Generic.IList), System.TimeSpan? estimatedCreationDuration = default(System.TimeSpan?), System.Collections.Generic.IList aaddsResourcesDetails = default(System.Collections.Generic.IList)) + + { + this.ValidationErrors = validationErrors; + this.ValidationWarnings = validationWarnings; + this.EstimatedCreationDuration = estimatedCreationDuration; + this.AaddsResourcesDetails = aaddsResourcesDetails; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the validation errors. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "validationErrors")] + public System.Collections.Generic.IList ValidationErrors {get; set; } + + /// + /// Gets or sets the validation warnings. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "validationWarnings")] + public System.Collections.Generic.IList ValidationWarnings {get; set; } + + /// + /// Gets or sets the estimated creation duration. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "estimatedCreationDuration")] + public System.TimeSpan? EstimatedCreationDuration {get; set; } + + /// + /// Gets or sets the Azure active directory domain service resource details. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "aaddsResourcesDetails")] + public System.Collections.Generic.IList AaddsResourcesDetails {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterDefinition.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterDefinition.cs new file mode 100644 index 000000000000..30321cd387dd --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterDefinition.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The cluster definition. + /// + public partial class ClusterDefinition + { + /// + /// Initializes a new instance of the ClusterDefinition class. + /// + public ClusterDefinition() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterDefinition class. + /// + + /// The link to the blueprint. + /// + + /// The type of cluster. + /// + + /// The versions of different services in the cluster. + /// + + /// The cluster configurations. + /// + public ClusterDefinition(string blueprint = default(string), string kind = default(string), System.Collections.Generic.IDictionary componentVersion = default(System.Collections.Generic.IDictionary), object configurations = default(object)) + + { + this.Blueprint = blueprint; + this.Kind = kind; + this.ComponentVersion = componentVersion; + this.Configurations = configurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the link to the blueprint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "blueprint")] + public string Blueprint {get; set; } + + /// + /// Gets or sets the type of cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "kind")] + public string Kind {get; set; } + + /// + /// Gets or sets the versions of different services in the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "componentVersion")] + public System.Collections.Generic.IDictionary ComponentVersion {get; set; } + + /// + /// Gets or sets the cluster configurations. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "configurations")] + public object Configurations {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterDiskEncryptionParameters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterDiskEncryptionParameters.cs new file mode 100644 index 000000000000..cdb4d752c3f0 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterDiskEncryptionParameters.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The Disk Encryption Cluster request parameters. + /// + public partial class ClusterDiskEncryptionParameters + { + /// + /// Initializes a new instance of the ClusterDiskEncryptionParameters class. + /// + public ClusterDiskEncryptionParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterDiskEncryptionParameters class. + /// + + /// Base key vault URI where the customers key is located eg. + /// https://myvault.vault.azure.net + /// + + /// Key name that is used for enabling disk encryption. + /// + + /// Specific key version that is used for enabling disk encryption. + /// + public ClusterDiskEncryptionParameters(string vaultUri = default(string), string keyName = default(string), string keyVersion = default(string)) + + { + this.VaultUri = vaultUri; + this.KeyName = keyName; + this.KeyVersion = keyVersion; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets base key vault URI where the customers key is located eg. + /// https://myvault.vault.azure.net + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "vaultUri")] + public string VaultUri {get; set; } + + /// + /// Gets or sets key name that is used for enabling disk encryption. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "keyName")] + public string KeyName {get; set; } + + /// + /// Gets or sets specific key version that is used for enabling disk + /// encryption. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "keyVersion")] + public string KeyVersion {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterGetProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterGetProperties.cs new file mode 100644 index 000000000000..75c66673fe4b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterGetProperties.cs @@ -0,0 +1,334 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The properties of cluster. + /// + public partial class ClusterGetProperties + { + /// + /// Initializes a new instance of the ClusterGetProperties class. + /// + public ClusterGetProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterGetProperties class. + /// + + /// The version of the cluster. + /// + + /// The hdp version of the cluster. + /// + + /// The type of operating system. + /// Possible values include: 'Windows', 'Linux' + + /// The cluster tier. + /// Possible values include: 'Standard', 'Premium' + + /// The cluster id. + /// + + /// The cluster definition. + /// + + /// The cluster kafka rest proxy configuration. + /// + + /// The security profile. + /// + + /// The compute profile. + /// + + /// The provisioning state, which only appears in the response. + /// Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', + /// 'Deleting' + + /// The date on which the cluster was created. + /// + + /// The state of the cluster. + /// + + /// The quota information. + /// + + /// The list of errors. + /// + + /// The list of connectivity endpoints. + /// + + /// The disk encryption properties. + /// + + /// The encryption-in-transit properties. + /// + + /// The storage profile. + /// + + /// The minimal supported tls version. + /// + + /// The excluded services config. + /// + + /// The network properties. + /// + + /// The compute isolation properties. + /// + + /// The private link configurations. + /// + + /// The list of private endpoint connections. + /// + public ClusterGetProperties(ClusterDefinition clusterDefinition, string clusterVersion = default(string), string clusterHdpVersion = default(string), string osType = default(string), string tier = default(string), string clusterId = default(string), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), string provisioningState = default(string), string createdDate = default(string), string clusterState = default(string), QuotaInfo quotaInfo = default(QuotaInfo), System.Collections.Generic.IList errors = default(System.Collections.Generic.IList), System.Collections.Generic.IList connectivityEndpoints = default(System.Collections.Generic.IList), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties), EncryptionInTransitProperties encryptionInTransitProperties = default(EncryptionInTransitProperties), StorageProfile storageProfile = default(StorageProfile), string minSupportedTlsVersion = default(string), ExcludedServicesConfig excludedServicesConfig = default(ExcludedServicesConfig), NetworkProperties networkProperties = default(NetworkProperties), ComputeIsolationProperties computeIsolationProperties = default(ComputeIsolationProperties), System.Collections.Generic.IList privateLinkConfigurations = default(System.Collections.Generic.IList), System.Collections.Generic.IList privateEndpointConnections = default(System.Collections.Generic.IList)) + + { + this.ClusterVersion = clusterVersion; + this.ClusterHdpVersion = clusterHdpVersion; + this.OSType = osType; + this.Tier = tier; + this.ClusterId = clusterId; + this.ClusterDefinition = clusterDefinition; + this.KafkaRestProperties = kafkaRestProperties; + this.SecurityProfile = securityProfile; + this.ComputeProfile = computeProfile; + this.ProvisioningState = provisioningState; + this.CreatedDate = createdDate; + this.ClusterState = clusterState; + this.QuotaInfo = quotaInfo; + this.Errors = errors; + this.ConnectivityEndpoints = connectivityEndpoints; + this.DiskEncryptionProperties = diskEncryptionProperties; + this.EncryptionInTransitProperties = encryptionInTransitProperties; + this.StorageProfile = storageProfile; + this.MinSupportedTlsVersion = minSupportedTlsVersion; + this.ExcludedServicesConfig = excludedServicesConfig; + this.NetworkProperties = networkProperties; + this.ComputeIsolationProperties = computeIsolationProperties; + this.PrivateLinkConfigurations = privateLinkConfigurations; + this.PrivateEndpointConnections = privateEndpointConnections; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the version of the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterVersion")] + public string ClusterVersion {get; set; } + + /// + /// Gets or sets the hdp version of the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterHdpVersion")] + public string ClusterHdpVersion {get; set; } + + /// + /// Gets or sets the type of operating system. Possible values include: 'Windows', 'Linux' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "osType")] + public string OSType {get; set; } + + /// + /// Gets or sets the cluster tier. Possible values include: 'Standard', 'Premium' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tier")] + public string Tier {get; set; } + + /// + /// Gets or sets the cluster id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterId")] + public string ClusterId {get; set; } + + /// + /// Gets or sets the cluster definition. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterDefinition")] + public ClusterDefinition ClusterDefinition {get; set; } + + /// + /// Gets or sets the cluster kafka rest proxy configuration. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "kafkaRestProperties")] + public KafkaRestProperties KafkaRestProperties {get; set; } + + /// + /// Gets or sets the security profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "securityProfile")] + public SecurityProfile SecurityProfile {get; set; } + + /// + /// Gets or sets the compute profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "computeProfile")] + public ComputeProfile ComputeProfile {get; set; } + + /// + /// Gets or sets the provisioning state, which only appears in the response. Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', 'Deleting' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState {get; set; } + + /// + /// Gets or sets the date on which the cluster was created. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "createdDate")] + public string CreatedDate {get; set; } + + /// + /// Gets or sets the state of the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterState")] + public string ClusterState {get; set; } + + /// + /// Gets or sets the quota information. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "quotaInfo")] + public QuotaInfo QuotaInfo {get; set; } + + /// + /// Gets or sets the list of errors. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "errors")] + public System.Collections.Generic.IList Errors {get; set; } + + /// + /// Gets or sets the list of connectivity endpoints. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "connectivityEndpoints")] + public System.Collections.Generic.IList ConnectivityEndpoints {get; set; } + + /// + /// Gets or sets the disk encryption properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "diskEncryptionProperties")] + public DiskEncryptionProperties DiskEncryptionProperties {get; set; } + + /// + /// Gets or sets the encryption-in-transit properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "encryptionInTransitProperties")] + public EncryptionInTransitProperties EncryptionInTransitProperties {get; set; } + + /// + /// Gets or sets the storage profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "storageProfile")] + public StorageProfile StorageProfile {get; set; } + + /// + /// Gets or sets the minimal supported tls version. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "minSupportedTlsVersion")] + public string MinSupportedTlsVersion {get; set; } + + /// + /// Gets or sets the excluded services config. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "excludedServicesConfig")] + public ExcludedServicesConfig ExcludedServicesConfig {get; set; } + + /// + /// Gets or sets the network properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "networkProperties")] + public NetworkProperties NetworkProperties {get; set; } + + /// + /// Gets or sets the compute isolation properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "computeIsolationProperties")] + public ComputeIsolationProperties ComputeIsolationProperties {get; set; } + + /// + /// Gets or sets the private link configurations. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateLinkConfigurations")] + public System.Collections.Generic.IList PrivateLinkConfigurations {get; set; } + + /// + /// Gets the list of private endpoint connections. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateEndpointConnections")] + public System.Collections.Generic.IList PrivateEndpointConnections {get; private set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.ClusterDefinition == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "ClusterDefinition"); + } + + + + + + + + + + + + + + + + + + + + + + + if (this.PrivateLinkConfigurations != null) + { + foreach (var element in this.PrivateLinkConfigurations) + { + if (element != null) + { + element.Validate(); + } + } + } + if (this.PrivateEndpointConnections != null) + { + foreach (var element in this.PrivateEndpointConnections) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterIdentity.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterIdentity.cs new file mode 100644 index 000000000000..671390ea311d --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterIdentity.cs @@ -0,0 +1,92 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Identity for the cluster. + /// + public partial class ClusterIdentity + { + /// + /// Initializes a new instance of the ClusterIdentity class. + /// + public ClusterIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterIdentity class. + /// + + /// The principal id of cluster identity. This property will only be provided + /// for a system assigned identity. + /// + + /// The tenant id associated with the cluster. This property will only be + /// provided for a system assigned identity. + /// + + /// The type of identity used for the cluster. The type 'SystemAssigned, + /// UserAssigned' includes both an implicitly created identity and a set of + /// user assigned identities. + /// Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, + /// UserAssigned', 'None' + + /// The list of user identities associated with the cluster. The user identity + /// dictionary key references will be ARM resource ids in the form: + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + /// + public ClusterIdentity(string principalId = default(string), string tenantId = default(string), string type = default(string), System.Collections.Generic.IDictionary userAssignedIdentities = default(System.Collections.Generic.IDictionary)) + + { + this.PrincipalId = principalId; + this.TenantId = tenantId; + this.Type = type; + this.UserAssignedIdentities = userAssignedIdentities; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the principal id of cluster identity. This property will only be + /// provided for a system assigned identity. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "principalId")] + public string PrincipalId {get; private set; } + + /// + /// Gets the tenant id associated with the cluster. This property will only be + /// provided for a system assigned identity. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tenantId")] + public string TenantId {get; private set; } + + /// + /// Gets or sets the type of identity used for the cluster. The type + /// 'SystemAssigned, UserAssigned' includes both an implicitly created identity + /// and a set of user assigned identities. Possible values include: 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned', 'None' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type {get; set; } + + /// + /// Gets or sets the list of user identities associated with the cluster. The + /// user identity dictionary key references will be ARM resource ids in the + /// form: + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "userAssignedIdentities")] + public System.Collections.Generic.IDictionary UserAssignedIdentities {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterListPersistedScriptActionsResult.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterListPersistedScriptActionsResult.cs new file mode 100644 index 000000000000..026a3e9a4762 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterListPersistedScriptActionsResult.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The ListPersistedScriptActions operation response. + /// + public partial class ClusterListPersistedScriptActionsResult + { + /// + /// Initializes a new instance of the ClusterListPersistedScriptActionsResult class. + /// + public ClusterListPersistedScriptActionsResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterListPersistedScriptActionsResult class. + /// + + /// The list of Persisted Script Actions. + /// + + /// The link (url) to the next page of results. + /// + public ClusterListPersistedScriptActionsResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList), string nextLink = default(string)) + + { + this.Value = value; + this.NextLink = nextLink; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of Persisted Script Actions. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value {get; set; } + + /// + /// Gets the link (url) to the next page of results. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "nextLink")] + public string NextLink {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterMonitoringRequest.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterMonitoringRequest.cs new file mode 100644 index 000000000000..267d056dd913 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterMonitoringRequest.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The cluster monitor parameters. + /// + public partial class ClusterMonitoringRequest + { + /// + /// Initializes a new instance of the ClusterMonitoringRequest class. + /// + public ClusterMonitoringRequest() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterMonitoringRequest class. + /// + + /// The cluster monitor workspace ID. + /// + + /// The cluster monitor workspace key. + /// + public ClusterMonitoringRequest(string workspaceId = default(string), string primaryKey = default(string)) + + { + this.WorkspaceId = workspaceId; + this.PrimaryKey = primaryKey; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the cluster monitor workspace ID. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "workspaceId")] + public string WorkspaceId {get; set; } + + /// + /// Gets or sets the cluster monitor workspace key. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "primaryKey")] + public string PrimaryKey {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterMonitoringResponse.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterMonitoringResponse.cs new file mode 100644 index 000000000000..09a0d226ac48 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterMonitoringResponse.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The cluster monitoring status response. + /// + public partial class ClusterMonitoringResponse + { + /// + /// Initializes a new instance of the ClusterMonitoringResponse class. + /// + public ClusterMonitoringResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterMonitoringResponse class. + /// + + /// The status of the monitor on the HDInsight cluster. + /// + + /// The workspace ID of the monitor on the HDInsight cluster. + /// + public ClusterMonitoringResponse(bool? clusterMonitoringEnabled = default(bool?), string workspaceId = default(string)) + + { + this.ClusterMonitoringEnabled = clusterMonitoringEnabled; + this.WorkspaceId = workspaceId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the status of the monitor on the HDInsight cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterMonitoringEnabled")] + public bool? ClusterMonitoringEnabled {get; set; } + + /// + /// Gets or sets the workspace ID of the monitor on the HDInsight cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "workspaceId")] + public string WorkspaceId {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterPatchParameters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterPatchParameters.cs new file mode 100644 index 000000000000..ab0bc683f144 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterPatchParameters.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The PatchCluster request parameters + /// + public partial class ClusterPatchParameters + { + /// + /// Initializes a new instance of the ClusterPatchParameters class. + /// + public ClusterPatchParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterPatchParameters class. + /// + + /// The resource tags. + /// + public ClusterPatchParameters(System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + + { + this.Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the resource tags. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] + public System.Collections.Generic.IDictionary Tags {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterResizeParameters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterResizeParameters.cs new file mode 100644 index 000000000000..05ef1135a607 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ClusterResizeParameters.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The Resize Cluster request parameters. + /// + public partial class ClusterResizeParameters + { + /// + /// Initializes a new instance of the ClusterResizeParameters class. + /// + public ClusterResizeParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterResizeParameters class. + /// + + /// The target instance count for the operation. + /// + public ClusterResizeParameters(int? targetInstanceCount = default(int?)) + + { + this.TargetInstanceCount = targetInstanceCount; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the target instance count for the operation. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "targetInstanceCount")] + public int? TargetInstanceCount {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ComputeIsolationProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ComputeIsolationProperties.cs new file mode 100644 index 000000000000..0f04659a9fd6 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ComputeIsolationProperties.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The compute isolation properties. + /// + public partial class ComputeIsolationProperties + { + /// + /// Initializes a new instance of the ComputeIsolationProperties class. + /// + public ComputeIsolationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ComputeIsolationProperties class. + /// + + /// The flag indicates whether enable compute isolation or not. + /// + + /// The host sku. + /// + public ComputeIsolationProperties(bool? enableComputeIsolation = default(bool?), string hostSku = default(string)) + + { + this.EnableComputeIsolation = enableComputeIsolation; + this.HostSku = hostSku; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the flag indicates whether enable compute isolation or not. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "enableComputeIsolation")] + public bool? EnableComputeIsolation {get; set; } + + /// + /// Gets or sets the host sku. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "hostSku")] + public string HostSku {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ComputeProfile.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ComputeProfile.cs new file mode 100644 index 000000000000..ab9cda1cd101 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ComputeProfile.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Describes the compute profile. + /// + public partial class ComputeProfile + { + /// + /// Initializes a new instance of the ComputeProfile class. + /// + public ComputeProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ComputeProfile class. + /// + + /// The list of roles in the cluster. + /// + public ComputeProfile(System.Collections.Generic.IList roles = default(System.Collections.Generic.IList)) + + { + this.Roles = roles; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of roles in the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "roles")] + public System.Collections.Generic.IList Roles {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ConnectivityEndpoint.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ConnectivityEndpoint.cs new file mode 100644 index 000000000000..2aedd3069a12 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ConnectivityEndpoint.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The connectivity properties + /// + public partial class ConnectivityEndpoint + { + /// + /// Initializes a new instance of the ConnectivityEndpoint class. + /// + public ConnectivityEndpoint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ConnectivityEndpoint class. + /// + + /// The name of the endpoint. + /// + + /// The protocol of the endpoint. + /// + + /// The location of the endpoint. + /// + + /// The port to connect to. + /// + + /// The private ip address of the endpoint. + /// + public ConnectivityEndpoint(string name = default(string), string protocol = default(string), string location = default(string), int? port = default(int?), string privateIPAddress = default(string)) + + { + this.Name = name; + this.Protocol = protocol; + this.Location = location; + this.Port = port; + this.PrivateIPAddress = privateIPAddress; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of the endpoint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the protocol of the endpoint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "protocol")] + public string Protocol {get; set; } + + /// + /// Gets or sets the location of the endpoint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + public string Location {get; set; } + + /// + /// Gets or sets the port to connect to. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "port")] + public int? Port {get; set; } + + /// + /// Gets or sets the private ip address of the endpoint. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateIPAddress")] + public string PrivateIPAddress {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/CreatedByType.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/CreatedByType.cs new file mode 100644 index 000000000000..f2efcab3cc57 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/CreatedByType.cs @@ -0,0 +1,21 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for CreatedByType. + /// + + + public static class CreatedByType + { + public const string User = "User"; + public const string Application = "Application"; + public const string ManagedIdentity = "ManagedIdentity"; + public const string Key = "Key"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DataDisksGroups.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DataDisksGroups.cs new file mode 100644 index 000000000000..23461a873773 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DataDisksGroups.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The data disks groups for the role. + /// + public partial class DataDisksGroups + { + /// + /// Initializes a new instance of the DataDisksGroups class. + /// + public DataDisksGroups() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DataDisksGroups class. + /// + + /// The number of disks per node. + /// + + /// ReadOnly. The storage account type. Do not set this value. + /// + + /// ReadOnly. The DiskSize in GB. Do not set this value. + /// + public DataDisksGroups(int? disksPerNode = default(int?), string storageAccountType = default(string), int? diskSizeGb = default(int?)) + + { + this.DisksPerNode = disksPerNode; + this.StorageAccountType = storageAccountType; + this.DiskSizeGb = diskSizeGb; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the number of disks per node. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "disksPerNode")] + public int? DisksPerNode {get; set; } + + /// + /// Gets readOnly. The storage account type. Do not set this value. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "storageAccountType")] + public string StorageAccountType {get; private set; } + + /// + /// Gets readOnly. The DiskSize in GB. Do not set this value. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "diskSizeGB")] + public int? DiskSizeGb {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DaysOfWeek.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DaysOfWeek.cs new file mode 100644 index 000000000000..8933a26fc389 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DaysOfWeek.cs @@ -0,0 +1,24 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for DaysOfWeek. + /// + + + public static class DaysOfWeek + { + public const string Monday = "Monday"; + public const string Tuesday = "Tuesday"; + public const string Wednesday = "Wednesday"; + public const string Thursday = "Thursday"; + public const string Friday = "Friday"; + public const string Saturday = "Saturday"; + public const string Sunday = "Sunday"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Dimension.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Dimension.cs new file mode 100644 index 000000000000..b87ef41b9fb0 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Dimension.cs @@ -0,0 +1,79 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The definition of Dimension. + /// + public partial class Dimension + { + /// + /// Initializes a new instance of the Dimension class. + /// + public Dimension() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Dimension class. + /// + + /// The name of the dimension. + /// + + /// The display name of the dimension. + /// + + /// The display name of the dimension. + /// + + /// The flag indicates whether the metric will be exported for shoebox or not. + /// + public Dimension(string name = default(string), string displayName = default(string), string internalName = default(string), bool? toBeExportedForShoebox = default(bool?)) + + { + this.Name = name; + this.DisplayName = displayName; + this.InternalName = internalName; + this.ToBeExportedForShoebox = toBeExportedForShoebox; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of the dimension. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the display name of the dimension. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "displayName")] + public string DisplayName {get; set; } + + /// + /// Gets or sets the display name of the dimension. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "internalName")] + public string InternalName {get; set; } + + /// + /// Gets or sets the flag indicates whether the metric will be exported for + /// shoebox or not. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "toBeExportedForShoebox")] + public bool? ToBeExportedForShoebox {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DirectoryType.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DirectoryType.cs new file mode 100644 index 000000000000..5726cc8da78f --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DirectoryType.cs @@ -0,0 +1,18 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for DirectoryType. + /// + + + public static class DirectoryType + { + public const string ActiveDirectory = "ActiveDirectory"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DiskBillingMeters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DiskBillingMeters.cs new file mode 100644 index 000000000000..28b5d6ccea8c --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DiskBillingMeters.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The disk billing meters. + /// + public partial class DiskBillingMeters + { + /// + /// Initializes a new instance of the DiskBillingMeters class. + /// + public DiskBillingMeters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DiskBillingMeters class. + /// + + /// The managed disk meter guid. + /// + + /// The managed disk billing sku, P30 or S30. + /// + + /// The managed disk billing tier, Standard or Premium. + /// Possible values include: 'Standard', 'Premium' + public DiskBillingMeters(string diskRpMeter = default(string), string sku = default(string), string tier = default(string)) + + { + this.DiskRpMeter = diskRpMeter; + this.Sku = sku; + this.Tier = tier; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the managed disk meter guid. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "diskRpMeter")] + public string DiskRpMeter {get; set; } + + /// + /// Gets or sets the managed disk billing sku, P30 or S30. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "sku")] + public string Sku {get; set; } + + /// + /// Gets or sets the managed disk billing tier, Standard or Premium. Possible values include: 'Standard', 'Premium' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tier")] + public string Tier {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DiskEncryptionProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DiskEncryptionProperties.cs new file mode 100644 index 000000000000..9e1a92ae1179 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/DiskEncryptionProperties.cs @@ -0,0 +1,102 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The disk encryption properties + /// + public partial class DiskEncryptionProperties + { + /// + /// Initializes a new instance of the DiskEncryptionProperties class. + /// + public DiskEncryptionProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DiskEncryptionProperties class. + /// + + /// Base key vault URI where the customers key is located eg. + /// https://myvault.vault.azure.net + /// + + /// Key name that is used for enabling disk encryption. + /// + + /// Specific key version that is used for enabling disk encryption. + /// + + /// Algorithm identifier for encryption, default RSA-OAEP. + /// Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', 'RSA1_5' + + /// Resource ID of Managed Identity that is used to access the key vault. + /// + + /// Indicates whether or not resource disk encryption is enabled. + /// + public DiskEncryptionProperties(string vaultUri = default(string), string keyName = default(string), string keyVersion = default(string), string encryptionAlgorithm = default(string), string msiResourceId = default(string), bool? encryptionAtHost = default(bool?)) + + { + this.VaultUri = vaultUri; + this.KeyName = keyName; + this.KeyVersion = keyVersion; + this.EncryptionAlgorithm = encryptionAlgorithm; + this.MsiResourceId = msiResourceId; + this.EncryptionAtHost = encryptionAtHost; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets base key vault URI where the customers key is located eg. + /// https://myvault.vault.azure.net + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "vaultUri")] + public string VaultUri {get; set; } + + /// + /// Gets or sets key name that is used for enabling disk encryption. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "keyName")] + public string KeyName {get; set; } + + /// + /// Gets or sets specific key version that is used for enabling disk + /// encryption. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "keyVersion")] + public string KeyVersion {get; set; } + + /// + /// Gets or sets algorithm identifier for encryption, default RSA-OAEP. Possible values include: 'RSA-OAEP', 'RSA-OAEP-256', 'RSA1_5' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "encryptionAlgorithm")] + public string EncryptionAlgorithm {get; set; } + + /// + /// Gets or sets resource ID of Managed Identity that is used to access the key + /// vault. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "msiResourceId")] + public string MsiResourceId {get; set; } + + /// + /// Gets or sets indicates whether or not resource disk encryption is enabled. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "encryptionAtHost")] + public bool? EncryptionAtHost {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/EncryptionInTransitProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/EncryptionInTransitProperties.cs new file mode 100644 index 000000000000..1dc932d70807 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/EncryptionInTransitProperties.cs @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The encryption-in-transit properties. + /// + public partial class EncryptionInTransitProperties + { + /// + /// Initializes a new instance of the EncryptionInTransitProperties class. + /// + public EncryptionInTransitProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EncryptionInTransitProperties class. + /// + + /// Indicates whether or not inter cluster node communication is encrypted in + /// transit. + /// + public EncryptionInTransitProperties(bool? isEncryptionInTransitEnabled = default(bool?)) + + { + this.IsEncryptionInTransitEnabled = isEncryptionInTransitEnabled; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets indicates whether or not inter cluster node communication is + /// encrypted in transit. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "isEncryptionInTransitEnabled")] + public bool? IsEncryptionInTransitEnabled {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ErrorResponse.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ErrorResponse.cs new file mode 100644 index 000000000000..e12d5b8397bb --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ErrorResponse.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Describes the format of Error response. + /// + public partial class ErrorResponse + { + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + + /// Error code + /// + + /// Error message indicating why the operation failed. + /// + public ErrorResponse(string code = default(string), string message = default(string)) + + { + this.Code = code; + this.Message = message; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets error code + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "code")] + public string Code {get; set; } + + /// + /// Gets or sets error message indicating why the operation failed. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "message")] + public string Message {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ErrorResponseException.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ErrorResponseException.cs new file mode 100644 index 000000000000..548553fe0979 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ErrorResponseException.cs @@ -0,0 +1,55 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Exception thrown for an invalid response with ErrorResponse information. + /// + public partial class ErrorResponseException : Microsoft.Rest.RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public Microsoft.Rest.HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public Microsoft.Rest.HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, System.Exception innerException) + : base(message, innerException) + { + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Errors.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Errors.cs new file mode 100644 index 000000000000..527ae0fd22a6 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Errors.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The error message associated with the cluster creation. + /// + public partial class Errors + { + /// + /// Initializes a new instance of the Errors class. + /// + public Errors() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Errors class. + /// + + /// The error code. + /// + + /// The error message. + /// + + /// The error target. + /// + + /// The error details. + /// + public Errors(string code = default(string), string message = default(string), string target = default(string), System.Collections.Generic.IList details = default(System.Collections.Generic.IList)) + + { + this.Code = code; + this.Message = message; + this.Target = target; + this.Details = details; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the error code. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "code")] + public string Code {get; private set; } + + /// + /// Gets the error message. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "message")] + public string Message {get; private set; } + + /// + /// Gets the error target. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "target")] + public string Target {get; private set; } + + /// + /// Gets the error details. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "details")] + public System.Collections.Generic.IList Details {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ExcludedServicesConfig.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ExcludedServicesConfig.cs new file mode 100644 index 000000000000..31c0a340ca40 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ExcludedServicesConfig.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The configuration that services will be excluded when creating cluster. + /// + public partial class ExcludedServicesConfig + { + /// + /// Initializes a new instance of the ExcludedServicesConfig class. + /// + public ExcludedServicesConfig() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ExcludedServicesConfig class. + /// + + /// The config id of excluded services. + /// + + /// The list of excluded services. + /// + public ExcludedServicesConfig(string excludedServicesConfigId = default(string), string excludedServicesList = default(string)) + + { + this.ExcludedServicesConfigId = excludedServicesConfigId; + this.ExcludedServicesList = excludedServicesList; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the config id of excluded services. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "excludedServicesConfigId")] + public string ExcludedServicesConfigId {get; set; } + + /// + /// Gets or sets the list of excluded services. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "excludedServicesList")] + public string ExcludedServicesList {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ExecuteScriptActionParameters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ExecuteScriptActionParameters.cs new file mode 100644 index 000000000000..6636dbd821c7 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ExecuteScriptActionParameters.cs @@ -0,0 +1,77 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The parameters for the script actions to execute on a running cluster. + /// + public partial class ExecuteScriptActionParameters + { + /// + /// Initializes a new instance of the ExecuteScriptActionParameters class. + /// + public ExecuteScriptActionParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ExecuteScriptActionParameters class. + /// + + /// The list of run time script actions. + /// + + /// Gets or sets if the scripts needs to be persisted. + /// + public ExecuteScriptActionParameters(bool persistOnSuccess, System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList)) + + { + this.ScriptActions = scriptActions; + this.PersistOnSuccess = persistOnSuccess; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of run time script actions. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "scriptActions")] + public System.Collections.Generic.IList ScriptActions {get; set; } + + /// + /// Gets or sets gets or sets if the scripts needs to be persisted. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "persistOnSuccess")] + public bool PersistOnSuccess {get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.ScriptActions != null) + { + foreach (var element in this.ScriptActions) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Extension.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Extension.cs new file mode 100644 index 000000000000..b76bb2eb6fbe --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Extension.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Cluster monitoring extensions. + /// + public partial class Extension + { + /// + /// Initializes a new instance of the Extension class. + /// + public Extension() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Extension class. + /// + + /// The workspace ID for the cluster monitoring extension. + /// + + /// The certificate for the cluster monitoring extensions. + /// + public Extension(string workspaceId = default(string), string primaryKey = default(string)) + + { + this.WorkspaceId = workspaceId; + this.PrimaryKey = primaryKey; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the workspace ID for the cluster monitoring extension. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "workspaceId")] + public string WorkspaceId {get; set; } + + /// + /// Gets or sets the certificate for the cluster monitoring extensions. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "primaryKey")] + public string PrimaryKey {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/FilterMode.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/FilterMode.cs new file mode 100644 index 000000000000..869d9891eb94 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/FilterMode.cs @@ -0,0 +1,21 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for FilterMode. + /// + + + public static class FilterMode + { + public const string Exclude = "Exclude"; + public const string Include = "Include"; + public const string Recommend = "Recommend"; + public const string Default = "Default"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/GatewaySettings.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/GatewaySettings.cs new file mode 100644 index 000000000000..357541b65d0e --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/GatewaySettings.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Gateway settings. + /// + public partial class GatewaySettings + { + /// + /// Initializes a new instance of the GatewaySettings class. + /// + public GatewaySettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the GatewaySettings class. + /// + + /// Indicates whether or not the gateway settings based authorization is + /// enabled. + /// + + /// The gateway settings user name. + /// + + /// The gateway settings user password. + /// + public GatewaySettings(bool? isCredentialEnabled = default(bool?), string userName = default(string), string password = default(string)) + + { + this.IsCredentialEnabled = isCredentialEnabled; + this.UserName = userName; + this.Password = password; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets indicates whether or not the gateway settings based authorization is + /// enabled. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "restAuthCredential.isEnabled")] + public bool? IsCredentialEnabled {get; private set; } + + /// + /// Gets the gateway settings user name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "restAuthCredential.username")] + public string UserName {get; private set; } + + /// + /// Gets the gateway settings user password. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "restAuthCredential.password")] + public string Password {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HDInsightClusterProvisioningState.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HDInsightClusterProvisioningState.cs new file mode 100644 index 000000000000..cf519b3ba0dc --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HDInsightClusterProvisioningState.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for HDInsightClusterProvisioningState. + /// + + + public static class HDInsightClusterProvisioningState + { + public const string InProgress = "InProgress"; + public const string Failed = "Failed"; + public const string Succeeded = "Succeeded"; + public const string Canceled = "Canceled"; + public const string Deleting = "Deleting"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HDInsightClusterResponseData.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HDInsightClusterResponseData.cs new file mode 100644 index 000000000000..0e10dcc55e6f --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HDInsightClusterResponseData.cs @@ -0,0 +1,73 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Common fields that are returned in the response for all Azure Resource + /// Manager resources + /// + public partial class HDInsightClusterResponseData : Microsoft.Rest.Azure.IResource + { + /// + /// Initializes a new instance of the HDInsightClusterResponseData class. + /// + public HDInsightClusterResponseData() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the HDInsightClusterResponseData class. + /// + + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + + /// The name of the resource + /// + + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + public HDInsightClusterResponseData(string id = default(string), string name = default(string), string type = default(string)) + + { + this.Id = id; + this.Name = name; + this.Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id {get; private set; } + + /// + /// Gets the name of the resource + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; private set; } + + /// + /// Gets the type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HardwareProfile.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HardwareProfile.cs new file mode 100644 index 000000000000..8dc6356595c6 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HardwareProfile.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The hardware profile. + /// + public partial class HardwareProfile + { + /// + /// Initializes a new instance of the HardwareProfile class. + /// + public HardwareProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the HardwareProfile class. + /// + + /// The size of the VM + /// + public HardwareProfile(string vmSize = default(string)) + + { + this.VMSize = vmSize; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the size of the VM + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "vmSize")] + public string VMSize {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HostInfo.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HostInfo.cs new file mode 100644 index 000000000000..fd4827a85066 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/HostInfo.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The cluster host information. + /// + public partial class HostInfo + { + /// + /// Initializes a new instance of the HostInfo class. + /// + public HostInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the HostInfo class. + /// + + /// The host name + /// + + /// The Fully Qualified Domain Name of host + /// + + /// The effective disk encryption key URL used by the host + /// + public HostInfo(string name = default(string), string fqdn = default(string), string effectiveDiskEncryptionKeyUrl = default(string)) + + { + this.Name = name; + this.Fqdn = fqdn; + this.EffectiveDiskEncryptionKeyUrl = effectiveDiskEncryptionKeyUrl; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the host name + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the Fully Qualified Domain Name of host + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "fqdn")] + public string Fqdn {get; set; } + + /// + /// Gets or sets the effective disk encryption key URL used by the host + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "effectiveDiskEncryptionKeyUrl")] + public string EffectiveDiskEncryptionKeyUrl {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/IPConfiguration.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/IPConfiguration.cs new file mode 100644 index 000000000000..277a895fce53 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/IPConfiguration.cs @@ -0,0 +1,144 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The ip configurations for the private link service. + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class IPConfiguration + { + /// + /// Initializes a new instance of the IPConfiguration class. + /// + public IPConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the IPConfiguration class. + /// + + /// The private link IP configuration id. + /// + + /// The name of private link IP configuration. + /// + + /// The type of the private link IP configuration. + /// + + /// The private link configuration provisioning state, which only appears in + /// the response. + /// Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', + /// 'Deleting' + + /// Indicates whether this IP configuration is primary for the corresponding + /// NIC. + /// + + /// The IP address. + /// + + /// The method that private IP address is allocated. + /// Possible values include: 'dynamic', 'static' + + /// The subnet resource id. + /// + public IPConfiguration(string name, string id = default(string), string type = default(string), string provisioningState = default(string), bool? primary = default(bool?), string privateIPAddress = default(string), string privateIPAllocationMethod = default(string), ResourceId subnet = default(ResourceId)) + + { + this.Id = id; + this.Name = name; + this.Type = type; + this.ProvisioningState = provisioningState; + this.Primary = primary; + this.PrivateIPAddress = privateIPAddress; + this.PrivateIPAllocationMethod = privateIPAllocationMethod; + this.Subnet = subnet; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the private link IP configuration id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id {get; private set; } + + /// + /// Gets or sets the name of private link IP configuration. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets the type of the private link IP configuration. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type {get; private set; } + + /// + /// Gets the private link configuration provisioning state, which only appears + /// in the response. Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', 'Deleting' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState {get; private set; } + + /// + /// Gets or sets indicates whether this IP configuration is primary for the + /// corresponding NIC. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.primary")] + public bool? Primary {get; set; } + + /// + /// Gets or sets the IP address. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.privateIPAddress")] + public string PrivateIPAddress {get; set; } + + /// + /// Gets or sets the method that private IP address is allocated. Possible values include: 'dynamic', 'static' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.privateIPAllocationMethod")] + public string PrivateIPAllocationMethod {get; set; } + + /// + /// Gets or sets the subnet resource id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.subnet")] + public ResourceId Subnet {get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Name == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + } + + + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/IPConfigurationProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/IPConfigurationProperties.cs new file mode 100644 index 000000000000..a9a3a0452df2 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/IPConfigurationProperties.cs @@ -0,0 +1,93 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The private link ip configuration properties. + /// + public partial class IPConfigurationProperties + { + /// + /// Initializes a new instance of the IPConfigurationProperties class. + /// + public IPConfigurationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the IPConfigurationProperties class. + /// + + /// The private link configuration provisioning state, which only appears in + /// the response. + /// Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', + /// 'Deleting' + + /// Indicates whether this IP configuration is primary for the corresponding + /// NIC. + /// + + /// The IP address. + /// + + /// The method that private IP address is allocated. + /// Possible values include: 'dynamic', 'static' + + /// The subnet resource id. + /// + public IPConfigurationProperties(string provisioningState = default(string), bool? primary = default(bool?), string privateIPAddress = default(string), string privateIPAllocationMethod = default(string), ResourceId subnet = default(ResourceId)) + + { + this.ProvisioningState = provisioningState; + this.Primary = primary; + this.PrivateIPAddress = privateIPAddress; + this.PrivateIPAllocationMethod = privateIPAllocationMethod; + this.Subnet = subnet; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the private link configuration provisioning state, which only appears + /// in the response. Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', 'Deleting' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState {get; private set; } + + /// + /// Gets or sets indicates whether this IP configuration is primary for the + /// corresponding NIC. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "primary")] + public bool? Primary {get; set; } + + /// + /// Gets or sets the IP address. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateIPAddress")] + public string PrivateIPAddress {get; set; } + + /// + /// Gets or sets the method that private IP address is allocated. Possible values include: 'dynamic', 'static' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateIPAllocationMethod")] + public string PrivateIPAllocationMethod {get; set; } + + /// + /// Gets or sets the subnet resource id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "subnet")] + public ResourceId Subnet {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/JsonWebKeyEncryptionAlgorithm.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/JsonWebKeyEncryptionAlgorithm.cs new file mode 100644 index 000000000000..3b6bc5db50a4 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/JsonWebKeyEncryptionAlgorithm.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for JsonWebKeyEncryptionAlgorithm. + /// + + + public static class JsonWebKeyEncryptionAlgorithm + { + public const string RSAOaep = "RSA-OAEP"; + public const string RSAOaep256 = "RSA-OAEP-256"; + public const string RSA15 = "RSA1_5"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/KafkaRestProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/KafkaRestProperties.cs new file mode 100644 index 000000000000..5a7fe1e452ab --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/KafkaRestProperties.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The kafka rest proxy configuration which contains AAD security group + /// information. + /// + public partial class KafkaRestProperties + { + /// + /// Initializes a new instance of the KafkaRestProperties class. + /// + public KafkaRestProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the KafkaRestProperties class. + /// + + /// The information of AAD security group. + /// + + /// The configurations that need to be overriden. + /// + public KafkaRestProperties(ClientGroupInfo clientGroupInfo = default(ClientGroupInfo), System.Collections.Generic.IDictionary configurationOverride = default(System.Collections.Generic.IDictionary)) + + { + this.ClientGroupInfo = clientGroupInfo; + this.ConfigurationOverride = configurationOverride; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the information of AAD security group. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clientGroupInfo")] + public ClientGroupInfo ClientGroupInfo {get; set; } + + /// + /// Gets or sets the configurations that need to be overriden. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "configurationOverride")] + public System.Collections.Generic.IDictionary ConfigurationOverride {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/LinuxOperatingSystemProfile.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/LinuxOperatingSystemProfile.cs new file mode 100644 index 000000000000..528d3e62300c --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/LinuxOperatingSystemProfile.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The ssh username, password, and ssh public key. + /// + public partial class LinuxOperatingSystemProfile + { + /// + /// Initializes a new instance of the LinuxOperatingSystemProfile class. + /// + public LinuxOperatingSystemProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LinuxOperatingSystemProfile class. + /// + + /// The username. + /// + + /// The password. + /// + + /// The SSH profile. + /// + public LinuxOperatingSystemProfile(string username = default(string), string password = default(string), SshProfile sshProfile = default(SshProfile)) + + { + this.Username = username; + this.Password = password; + this.SshProfile = sshProfile; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the username. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "username")] + public string Username {get; set; } + + /// + /// Gets or sets the password. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "password")] + public string Password {get; set; } + + /// + /// Gets or sets the SSH profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "sshProfile")] + public SshProfile SshProfile {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/LocalizedName.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/LocalizedName.cs new file mode 100644 index 000000000000..5cce4e8f80b0 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/LocalizedName.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The details about the localizable name of a type of usage. + /// + public partial class LocalizedName + { + /// + /// Initializes a new instance of the LocalizedName class. + /// + public LocalizedName() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LocalizedName class. + /// + + /// The name of the used resource. + /// + + /// The localized name of the used resource. + /// + public LocalizedName(string value = default(string), string localizedValue = default(string)) + + { + this.Value = value; + this.LocalizedValue = localizedValue; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of the used resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public string Value {get; set; } + + /// + /// Gets or sets the localized name of the used resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "localizedValue")] + public string LocalizedValue {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/MetricSpecifications.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/MetricSpecifications.cs new file mode 100644 index 000000000000..a5ff6ec31fd1 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/MetricSpecifications.cs @@ -0,0 +1,208 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The details of metric specifications. + /// + public partial class MetricSpecifications + { + /// + /// Initializes a new instance of the MetricSpecifications class. + /// + public MetricSpecifications() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the MetricSpecifications class. + /// + + /// The name of the metric specification. + /// + + /// The display name of the metric specification. + /// + + /// The display description of the metric specification. + /// + + /// The unit of the metric specification. + /// + + /// The aggregation type of the metric specification. + /// + + /// The supported aggregation types of the metric specification. + /// + + /// The supported time grain types of the metric specification. + /// + + /// The flag indicates whether enable regional mdm account or not. + /// + + /// The source mdm account. + /// + + /// The source mdm namespace. + /// + + /// The metric filter pattern. + /// + + /// The flag indicates whether filling gap with zero. + /// + + /// The category of the metric. + /// + + /// The override name of resource id dimension name. + /// + + /// The flag indicates whether the metric is internal or not. + /// + + /// The override name of delegate metric. + /// + + /// The dimensions of the metric specification. + /// + public MetricSpecifications(string name = default(string), string displayName = default(string), string displayDescription = default(string), string unit = default(string), string aggregationType = default(string), System.Collections.Generic.IList supportedAggregationTypes = default(System.Collections.Generic.IList), System.Collections.Generic.IList supportedTimeGrainTypes = default(System.Collections.Generic.IList), bool? enableRegionalMdmAccount = default(bool?), string sourceMdmAccount = default(string), string sourceMdmNamespace = default(string), string metricFilterPattern = default(string), bool? fillGapWithZero = default(bool?), string category = default(string), string resourceIdDimensionNameOverride = default(string), bool? isInternal = default(bool?), string delegateMetricNameOverride = default(string), System.Collections.Generic.IList dimensions = default(System.Collections.Generic.IList)) + + { + this.Name = name; + this.DisplayName = displayName; + this.DisplayDescription = displayDescription; + this.Unit = unit; + this.AggregationType = aggregationType; + this.SupportedAggregationTypes = supportedAggregationTypes; + this.SupportedTimeGrainTypes = supportedTimeGrainTypes; + this.EnableRegionalMdmAccount = enableRegionalMdmAccount; + this.SourceMdmAccount = sourceMdmAccount; + this.SourceMdmNamespace = sourceMdmNamespace; + this.MetricFilterPattern = metricFilterPattern; + this.FillGapWithZero = fillGapWithZero; + this.Category = category; + this.ResourceIdDimensionNameOverride = resourceIdDimensionNameOverride; + this.IsInternal = isInternal; + this.DelegateMetricNameOverride = delegateMetricNameOverride; + this.Dimensions = dimensions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of the metric specification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the display name of the metric specification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "displayName")] + public string DisplayName {get; set; } + + /// + /// Gets or sets the display description of the metric specification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "displayDescription")] + public string DisplayDescription {get; set; } + + /// + /// Gets or sets the unit of the metric specification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + public string Unit {get; set; } + + /// + /// Gets or sets the aggregation type of the metric specification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "aggregationType")] + public string AggregationType {get; set; } + + /// + /// Gets or sets the supported aggregation types of the metric specification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "supportedAggregationTypes")] + public System.Collections.Generic.IList SupportedAggregationTypes {get; set; } + + /// + /// Gets or sets the supported time grain types of the metric specification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "supportedTimeGrainTypes")] + public System.Collections.Generic.IList SupportedTimeGrainTypes {get; set; } + + /// + /// Gets or sets the flag indicates whether enable regional mdm account or not. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "enableRegionalMdmAccount")] + public bool? EnableRegionalMdmAccount {get; set; } + + /// + /// Gets or sets the source mdm account. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "sourceMdmAccount")] + public string SourceMdmAccount {get; set; } + + /// + /// Gets or sets the source mdm namespace. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "sourceMdmNamespace")] + public string SourceMdmNamespace {get; set; } + + /// + /// Gets or sets the metric filter pattern. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "metricFilterPattern")] + public string MetricFilterPattern {get; set; } + + /// + /// Gets or sets the flag indicates whether filling gap with zero. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "fillGapWithZero")] + public bool? FillGapWithZero {get; set; } + + /// + /// Gets or sets the category of the metric. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "category")] + public string Category {get; set; } + + /// + /// Gets or sets the override name of resource id dimension name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceIdDimensionNameOverride")] + public string ResourceIdDimensionNameOverride {get; set; } + + /// + /// Gets or sets the flag indicates whether the metric is internal or not. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "isInternal")] + public bool? IsInternal {get; set; } + + /// + /// Gets or sets the override name of delegate metric. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "delegateMetricNameOverride")] + public string DelegateMetricNameOverride {get; set; } + + /// + /// Gets or sets the dimensions of the metric specification. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "dimensions")] + public System.Collections.Generic.IList Dimensions {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NameAvailabilityCheckRequestParameters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NameAvailabilityCheckRequestParameters.cs new file mode 100644 index 000000000000..2357fe2a3abb --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NameAvailabilityCheckRequestParameters.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The request spec of checking name availability. + /// + public partial class NameAvailabilityCheckRequestParameters + { + /// + /// Initializes a new instance of the NameAvailabilityCheckRequestParameters class. + /// + public NameAvailabilityCheckRequestParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NameAvailabilityCheckRequestParameters class. + /// + + /// The resource name. + /// + + /// The resource type + /// + public NameAvailabilityCheckRequestParameters(string name = default(string), string type = default(string)) + + { + this.Name = name; + this.Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the resource name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the resource type + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NameAvailabilityCheckResult.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NameAvailabilityCheckResult.cs new file mode 100644 index 000000000000..dd2a43ecdebd --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NameAvailabilityCheckResult.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The response spec of checking name availability. + /// + public partial class NameAvailabilityCheckResult + { + /// + /// Initializes a new instance of the NameAvailabilityCheckResult class. + /// + public NameAvailabilityCheckResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NameAvailabilityCheckResult class. + /// + + /// This indicates whether the name is available. + /// + + /// The reason of the result. + /// + + /// The related message. + /// + public NameAvailabilityCheckResult(bool? nameAvailable = default(bool?), string reason = default(string), string message = default(string)) + + { + this.NameAvailable = nameAvailable; + this.Reason = reason; + this.Message = message; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets this indicates whether the name is available. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "nameAvailable")] + public bool? NameAvailable {get; set; } + + /// + /// Gets the reason of the result. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "reason")] + public string Reason {get; private set; } + + /// + /// Gets the related message. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "message")] + public string Message {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NetworkProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NetworkProperties.cs new file mode 100644 index 000000000000..e03b2a11b007 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/NetworkProperties.cs @@ -0,0 +1,74 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The network properties. + /// + public partial class NetworkProperties + { + /// + /// Initializes a new instance of the NetworkProperties class. + /// + public NetworkProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NetworkProperties class. + /// + + /// A value to describe how the outbound dependencies of a HDInsight cluster + /// are managed. 'Managed' means that the outbound dependencies are managed by + /// the HDInsight service. 'External' means that the outbound dependencies are + /// managed by a customer specific solution. + /// Possible values include: 'Managed', 'External' + + /// The direction for the resource provider connection. + /// Possible values include: 'Inbound', 'Outbound' + + /// Indicates whether or not private link is enabled. + /// Possible values include: 'Disabled', 'Enabled' + public NetworkProperties(string outboundDependenciesManagedType = default(string), string resourceProviderConnection = default(string), string privateLink = default(string)) + + { + this.OutboundDependenciesManagedType = outboundDependenciesManagedType; + this.ResourceProviderConnection = resourceProviderConnection; + this.PrivateLink = privateLink; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets a value to describe how the outbound dependencies of a + /// HDInsight cluster are managed. 'Managed' means that the outbound + /// dependencies are managed by the HDInsight service. 'External' means that + /// the outbound dependencies are managed by a customer specific solution. Possible values include: 'Managed', 'External' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "outboundDependenciesManagedType")] + public string OutboundDependenciesManagedType {get; set; } + + /// + /// Gets or sets the direction for the resource provider connection. Possible values include: 'Inbound', 'Outbound' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceProviderConnection")] + public string ResourceProviderConnection {get; set; } + + /// + /// Gets or sets indicates whether or not private link is enabled. Possible values include: 'Disabled', 'Enabled' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateLink")] + public string PrivateLink {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OSType.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OSType.cs new file mode 100644 index 000000000000..01f0f565f2b0 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OSType.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for OSType. + /// + + + public static class OSType + { + public const string Windows = "Windows"; + public const string Linux = "Linux"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Operation.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Operation.cs new file mode 100644 index 000000000000..eb999bbd8be5 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Operation.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The HDInsight REST API operation. + /// + public partial class Operation + { + /// + /// Initializes a new instance of the Operation class. + /// + public Operation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Operation class. + /// + + /// The operation name: {provider}/{resource}/{operation} + /// + + /// The display of operation. + /// + + /// The operation properties. + /// + public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay), OperationProperties properties = default(OperationProperties)) + + { + this.Name = name; + this.Display = display; + this.Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the operation name: {provider}/{resource}/{operation} + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the display of operation. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "display")] + public OperationDisplay Display {get; set; } + + /// + /// Gets or sets the operation properties. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties")] + public OperationProperties Properties {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OperationDisplay.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..d5378a138488 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OperationDisplay.cs @@ -0,0 +1,80 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The object that represents the operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + + /// The service provider: Microsoft.HDInsight + /// + + /// The resource on which the operation is performed: Cluster, Applications, + /// etc. + /// + + /// The operation type: read, write, delete, etc. + /// + + /// Localized friendly description for the operation + /// + public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) + + { + this.Provider = provider; + this.Resource = resource; + this.Operation = operation; + this.Description = description; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the service provider: Microsoft.HDInsight + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "provider")] + public string Provider {get; set; } + + /// + /// Gets or sets the resource on which the operation is performed: Cluster, + /// Applications, etc. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resource")] + public string Resource {get; set; } + + /// + /// Gets or sets the operation type: read, write, delete, etc. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operation")] + public string Operation {get; set; } + + /// + /// Gets or sets localized friendly description for the operation + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + public string Description {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OperationProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OperationProperties.cs new file mode 100644 index 000000000000..1c1ad26902e8 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OperationProperties.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The details of operation. + /// + public partial class OperationProperties + { + /// + /// Initializes a new instance of the OperationProperties class. + /// + public OperationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OperationProperties class. + /// + + /// The specification of the service. + /// + public OperationProperties(ServiceSpecification serviceSpecification = default(ServiceSpecification)) + + { + this.ServiceSpecification = serviceSpecification; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the specification of the service. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "serviceSpecification")] + public ServiceSpecification ServiceSpecification {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OsProfile.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OsProfile.cs new file mode 100644 index 000000000000..8aaab1b38080 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OsProfile.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The Linux operation systems profile. + /// + public partial class OsProfile + { + /// + /// Initializes a new instance of the OsProfile class. + /// + public OsProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OsProfile class. + /// + + /// The Linux OS profile. + /// + public OsProfile(LinuxOperatingSystemProfile linuxOperatingSystemProfile = default(LinuxOperatingSystemProfile)) + + { + this.LinuxOperatingSystemProfile = linuxOperatingSystemProfile; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the Linux OS profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "linuxOperatingSystemProfile")] + public LinuxOperatingSystemProfile LinuxOperatingSystemProfile {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OutboundDependenciesManagedType.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OutboundDependenciesManagedType.cs new file mode 100644 index 000000000000..2e5311460ddc --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/OutboundDependenciesManagedType.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for OutboundDependenciesManagedType. + /// + + + public static class OutboundDependenciesManagedType + { + public const string Managed = "Managed"; + public const string External = "External"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Page.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Page.cs new file mode 100644 index 000000000000..2354a7201dbc --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Page.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines a page in Azure responses. + /// + /// Type of the page content items + [Newtonsoft.Json.JsonObject] + public class Page : Microsoft.Rest.Azure.IPage + { + /// + /// Gets the link to the next page. + /// + [Newtonsoft.Json.JsonProperty("nextLink")] + public System.String NextPageLink { get; private set; } + + [Newtonsoft.Json.JsonProperty("value")] + private System.Collections.Generic.IList Items{ get; set; } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + public System.Collections.Generic.IEnumerator GetEnumerator() + { + return (Items == null) ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); + } + + /// + /// Returns an enumerator that iterates through the collection. + /// + /// A an enumerator that can be used to iterate through the collection. + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpoint.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpoint.cs new file mode 100644 index 000000000000..72372a0a6981 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpoint.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The private endpoint. + /// + public partial class PrivateEndpoint + { + /// + /// Initializes a new instance of the PrivateEndpoint class. + /// + public PrivateEndpoint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpoint class. + /// + + /// The private endpoint id. + /// + public PrivateEndpoint(string id = default(string)) + + { + this.Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the private endpoint id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs new file mode 100644 index 000000000000..f219b62dec76 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnection.cs @@ -0,0 +1,123 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The private endpoint connection. + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class PrivateEndpointConnection : HDInsightClusterResponseData + { + /// + /// Initializes a new instance of the PrivateEndpointConnection class. + /// + public PrivateEndpointConnection() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpointConnection class. + /// + + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + + /// The name of the resource + /// + + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + + /// Metadata pertaining to creation and last modification of the resource. + /// + + /// The private endpoint of the private endpoint connection + /// + + /// The private link service connection state. + /// + + /// The link identifier. + /// + + /// The provisioning state, which only appears in the response. + /// Possible values include: 'InProgress', 'Updating', 'Failed', 'Succeeded', + /// 'Canceled', 'Deleting' + public PrivateEndpointConnection(PrivateLinkServiceConnectionState privateLinkServiceConnectionState, string id = default(string), string name = default(string), string type = default(string), SystemData systemData = default(SystemData), PrivateEndpoint privateEndpoint = default(PrivateEndpoint), string linkIdentifier = default(string), string provisioningState = default(string)) + + : base(id, name, type) + { + this.SystemData = systemData; + this.PrivateEndpoint = privateEndpoint; + this.PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; + this.LinkIdentifier = linkIdentifier; + this.ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets metadata pertaining to creation and last modification of the resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "systemData")] + public SystemData SystemData {get; private set; } + + /// + /// Gets the private endpoint of the private endpoint connection + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.privateEndpoint")] + public PrivateEndpoint PrivateEndpoint {get; private set; } + + /// + /// Gets or sets the private link service connection state. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.privateLinkServiceConnectionState")] + public PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState {get; set; } + + /// + /// Gets the link identifier. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.linkIdentifier")] + public string LinkIdentifier {get; private set; } + + /// + /// Gets the provisioning state, which only appears in the response. Possible values include: 'InProgress', 'Updating', 'Failed', 'Succeeded', 'Canceled', 'Deleting' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState {get; private set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.PrivateLinkServiceConnectionState == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "PrivateLinkServiceConnectionState"); + } + + + if (this.PrivateLinkServiceConnectionState != null) + { + this.PrivateLinkServiceConnectionState.Validate(); + } + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnectionProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnectionProperties.cs new file mode 100644 index 000000000000..2af2858a287b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnectionProperties.cs @@ -0,0 +1,99 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The private endpoint connection properties. + /// + public partial class PrivateEndpointConnectionProperties + { + /// + /// Initializes a new instance of the PrivateEndpointConnectionProperties class. + /// + public PrivateEndpointConnectionProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpointConnectionProperties class. + /// + + /// The private endpoint of the private endpoint connection + /// + + /// The private link service connection state. + /// + + /// The link identifier. + /// + + /// The provisioning state, which only appears in the response. + /// Possible values include: 'InProgress', 'Updating', 'Failed', 'Succeeded', + /// 'Canceled', 'Deleting' + public PrivateEndpointConnectionProperties(PrivateLinkServiceConnectionState privateLinkServiceConnectionState, PrivateEndpoint privateEndpoint = default(PrivateEndpoint), string linkIdentifier = default(string), string provisioningState = default(string)) + + { + this.PrivateEndpoint = privateEndpoint; + this.PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; + this.LinkIdentifier = linkIdentifier; + this.ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the private endpoint of the private endpoint connection + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateEndpoint")] + public PrivateEndpoint PrivateEndpoint {get; private set; } + + /// + /// Gets or sets the private link service connection state. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "privateLinkServiceConnectionState")] + public PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState {get; set; } + + /// + /// Gets the link identifier. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "linkIdentifier")] + public string LinkIdentifier {get; private set; } + + /// + /// Gets the provisioning state, which only appears in the response. Possible values include: 'InProgress', 'Updating', 'Failed', 'Succeeded', 'Canceled', 'Deleting' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState {get; private set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.PrivateLinkServiceConnectionState == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "PrivateLinkServiceConnectionState"); + } + + if (this.PrivateLinkServiceConnectionState != null) + { + this.PrivateLinkServiceConnectionState.Validate(); + } + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnectionProvisioningState.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnectionProvisioningState.cs new file mode 100644 index 000000000000..78aa351c9bad --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateEndpointConnectionProvisioningState.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for PrivateEndpointConnectionProvisioningState. + /// + + + public static class PrivateEndpointConnectionProvisioningState + { + public const string InProgress = "InProgress"; + public const string Updating = "Updating"; + public const string Failed = "Failed"; + public const string Succeeded = "Succeeded"; + public const string Canceled = "Canceled"; + public const string Deleting = "Deleting"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateIPAllocationMethod.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateIPAllocationMethod.cs new file mode 100644 index 000000000000..61c535a191eb --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateIPAllocationMethod.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for PrivateIPAllocationMethod. + /// + + + public static class PrivateIPAllocationMethod + { + public const string Dynamic = "dynamic"; + public const string Static = "static"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLink.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLink.cs new file mode 100644 index 000000000000..777324b12461 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLink.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for PrivateLink. + /// + + + public static class PrivateLink + { + public const string Disabled = "Disabled"; + public const string Enabled = "Enabled"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfiguration.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfiguration.cs new file mode 100644 index 000000000000..0044e0a53551 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfiguration.cs @@ -0,0 +1,141 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The private link configuration. + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class PrivateLinkConfiguration + { + /// + /// Initializes a new instance of the PrivateLinkConfiguration class. + /// + public PrivateLinkConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkConfiguration class. + /// + + /// The private link configuration id. + /// + + /// The name of private link configuration. + /// + + /// The type of the private link configuration. + /// + + /// The HDInsight private linkable sub-resource name to apply the private link + /// configuration to. For example, 'headnode', 'gateway', 'edgenode'. + /// + + /// The private link configuration provisioning state, which only appears in + /// the response. + /// Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', + /// 'Deleting' + + /// The IP configurations for the private link service. + /// + public PrivateLinkConfiguration(string name, string groupId, System.Collections.Generic.IList ipConfigurations, string id = default(string), string type = default(string), string provisioningState = default(string)) + + { + this.Id = id; + this.Name = name; + this.Type = type; + this.GroupId = groupId; + this.ProvisioningState = provisioningState; + this.IPConfigurations = ipConfigurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the private link configuration id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id {get; private set; } + + /// + /// Gets or sets the name of private link configuration. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets the type of the private link configuration. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type {get; private set; } + + /// + /// Gets or sets the HDInsight private linkable sub-resource name to apply the + /// private link configuration to. For example, 'headnode', 'gateway', + /// 'edgenode'. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.groupId")] + public string GroupId {get; set; } + + /// + /// Gets the private link configuration provisioning state, which only appears + /// in the response. Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', 'Deleting' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState {get; private set; } + + /// + /// Gets or sets the IP configurations for the private link service. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.ipConfigurations")] + public System.Collections.Generic.IList IPConfigurations {get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Name == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + } + if (this.GroupId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "GroupId"); + } + if (this.IPConfigurations == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "IPConfigurations"); + } + + + + + + if (this.IPConfigurations != null) + { + foreach (var element in this.IPConfigurations) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfigurationProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfigurationProperties.cs new file mode 100644 index 000000000000..f342149e1d2b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfigurationProperties.cs @@ -0,0 +1,103 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The private link configuration properties. + /// + public partial class PrivateLinkConfigurationProperties + { + /// + /// Initializes a new instance of the PrivateLinkConfigurationProperties class. + /// + public PrivateLinkConfigurationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkConfigurationProperties class. + /// + + /// The HDInsight private linkable sub-resource name to apply the private link + /// configuration to. For example, 'headnode', 'gateway', 'edgenode'. + /// + + /// The private link configuration provisioning state, which only appears in + /// the response. + /// Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', + /// 'Deleting' + + /// The IP configurations for the private link service. + /// + public PrivateLinkConfigurationProperties(string groupId, System.Collections.Generic.IList ipConfigurations, string provisioningState = default(string)) + + { + this.GroupId = groupId; + this.ProvisioningState = provisioningState; + this.IPConfigurations = ipConfigurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the HDInsight private linkable sub-resource name to apply the + /// private link configuration to. For example, 'headnode', 'gateway', + /// 'edgenode'. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "groupId")] + public string GroupId {get; set; } + + /// + /// Gets the private link configuration provisioning state, which only appears + /// in the response. Possible values include: 'InProgress', 'Failed', 'Succeeded', 'Canceled', 'Deleting' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState {get; private set; } + + /// + /// Gets or sets the IP configurations for the private link service. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "ipConfigurations")] + public System.Collections.Generic.IList IPConfigurations {get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.GroupId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "GroupId"); + } + if (this.IPConfigurations == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "IPConfigurations"); + } + + + if (this.IPConfigurations != null) + { + foreach (var element in this.IPConfigurations) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfigurationProvisioningState.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfigurationProvisioningState.cs new file mode 100644 index 000000000000..3ff8cda80d8f --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkConfigurationProvisioningState.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for PrivateLinkConfigurationProvisioningState. + /// + + + public static class PrivateLinkConfigurationProvisioningState + { + public const string InProgress = "InProgress"; + public const string Failed = "Failed"; + public const string Succeeded = "Succeeded"; + public const string Canceled = "Canceled"; + public const string Deleting = "Deleting"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResource.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResource.cs new file mode 100644 index 000000000000..28b7c0b11724 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResource.cs @@ -0,0 +1,91 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// A private link resource + /// + [Microsoft.Rest.Serialization.JsonTransformation] + public partial class PrivateLinkResource : Resource + { + /// + /// Initializes a new instance of the PrivateLinkResource class. + /// + public PrivateLinkResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkResource class. + /// + + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + + /// The name of the resource + /// + + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + + /// Metadata pertaining to creation and last modification of the resource. + /// + + /// The private link resource group id. + /// + + /// The private link resource required member names. + /// + + /// The private link resource Private link DNS zone name. + /// + public PrivateLinkResource(string id = default(string), string name = default(string), string type = default(string), SystemData systemData = default(SystemData), string groupId = default(string), System.Collections.Generic.IList requiredMembers = default(System.Collections.Generic.IList), System.Collections.Generic.IList requiredZoneNames = default(System.Collections.Generic.IList)) + + : base(id, name, type) + { + this.SystemData = systemData; + this.GroupId = groupId; + this.RequiredMembers = requiredMembers; + this.RequiredZoneNames = requiredZoneNames; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets metadata pertaining to creation and last modification of the resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "systemData")] + public SystemData SystemData {get; private set; } + + /// + /// Gets the private link resource group id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.groupId")] + public string GroupId {get; private set; } + + /// + /// Gets the private link resource required member names. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requiredMembers")] + public System.Collections.Generic.IList RequiredMembers {get; private set; } + + /// + /// Gets or sets the private link resource Private link DNS zone name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "properties.requiredZoneNames")] + public System.Collections.Generic.IList RequiredZoneNames {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResourceListResult.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResourceListResult.cs new file mode 100644 index 000000000000..eb74bf43def9 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResourceListResult.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// A list of private link resources + /// + public partial class PrivateLinkResourceListResult + { + /// + /// Initializes a new instance of the PrivateLinkResourceListResult class. + /// + public PrivateLinkResourceListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkResourceListResult class. + /// + + /// Array of private link resources + /// + public PrivateLinkResourceListResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) + + { + this.Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets array of private link resources + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResourceProperties.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResourceProperties.cs new file mode 100644 index 000000000000..ad8361b6d0d7 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkResourceProperties.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Properties of a private link resource. + /// + public partial class PrivateLinkResourceProperties + { + /// + /// Initializes a new instance of the PrivateLinkResourceProperties class. + /// + public PrivateLinkResourceProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkResourceProperties class. + /// + + /// The private link resource group id. + /// + + /// The private link resource required member names. + /// + + /// The private link resource Private link DNS zone name. + /// + public PrivateLinkResourceProperties(string groupId = default(string), System.Collections.Generic.IList requiredMembers = default(System.Collections.Generic.IList), System.Collections.Generic.IList requiredZoneNames = default(System.Collections.Generic.IList)) + + { + this.GroupId = groupId; + this.RequiredMembers = requiredMembers; + this.RequiredZoneNames = requiredZoneNames; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the private link resource group id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "groupId")] + public string GroupId {get; private set; } + + /// + /// Gets the private link resource required member names. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "requiredMembers")] + public System.Collections.Generic.IList RequiredMembers {get; private set; } + + /// + /// Gets or sets the private link resource Private link DNS zone name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "requiredZoneNames")] + public System.Collections.Generic.IList RequiredZoneNames {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionState.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionState.cs new file mode 100644 index 000000000000..b981a9a22bb9 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionState.cs @@ -0,0 +1,84 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The private link service connection state. + /// + public partial class PrivateLinkServiceConnectionState + { + /// + /// Initializes a new instance of the PrivateLinkServiceConnectionState class. + /// + public PrivateLinkServiceConnectionState() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkServiceConnectionState class. + /// + + /// The concrete private link service connection. + /// Possible values include: 'Approved', 'Rejected', 'Pending', 'Removed' + + /// The optional description of the status. + /// + + /// Whether there is further actions. + /// + public PrivateLinkServiceConnectionState(string status, string description = default(string), string actionsRequired = default(string)) + + { + this.Status = status; + this.Description = description; + this.ActionsRequired = actionsRequired; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the concrete private link service connection. Possible values include: 'Approved', 'Rejected', 'Pending', 'Removed' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "status")] + public string Status {get; set; } + + /// + /// Gets or sets the optional description of the status. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "description")] + public string Description {get; set; } + + /// + /// Gets or sets whether there is further actions. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "actionsRequired")] + public string ActionsRequired {get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Status == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Status"); + } + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionStatus.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionStatus.cs new file mode 100644 index 000000000000..4c2dbcb88252 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/PrivateLinkServiceConnectionStatus.cs @@ -0,0 +1,21 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for PrivateLinkServiceConnectionStatus. + /// + + + public static class PrivateLinkServiceConnectionStatus + { + public const string Approved = "Approved"; + public const string Rejected = "Rejected"; + public const string Pending = "Pending"; + public const string Removed = "Removed"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ProxyResource.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ProxyResource.cs new file mode 100644 index 000000000000..4e0a57b753cf --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ProxyResource.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The resource model definition for a Azure Resource Manager proxy resource. + /// It will not have tags and a location + /// + public partial class ProxyResource : HDInsightClusterResponseData + { + /// + /// Initializes a new instance of the ProxyResource class. + /// + public ProxyResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ProxyResource class. + /// + + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + + /// The name of the resource + /// + + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + public ProxyResource(string id = default(string), string name = default(string), string type = default(string)) + + : base(id, name, type) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/QuotaCapability.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/QuotaCapability.cs new file mode 100644 index 000000000000..3b41679b8b46 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/QuotaCapability.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The regional quota capability. + /// + public partial class QuotaCapability + { + /// + /// Initializes a new instance of the QuotaCapability class. + /// + public QuotaCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the QuotaCapability class. + /// + + /// The number of cores used in the subscription. + /// + + /// The number of cores that the subscription allowed. + /// + + /// The list of region quota capabilities. + /// + public QuotaCapability(long? coresUsed = default(long?), long? maxCoresAllowed = default(long?), System.Collections.Generic.IList regionalQuotas = default(System.Collections.Generic.IList)) + + { + this.CoresUsed = coresUsed; + this.MaxCoresAllowed = maxCoresAllowed; + this.RegionalQuotas = regionalQuotas; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the number of cores used in the subscription. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "coresUsed")] + public long? CoresUsed {get; set; } + + /// + /// Gets or sets the number of cores that the subscription allowed. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "maxCoresAllowed")] + public long? MaxCoresAllowed {get; set; } + + /// + /// Gets or sets the list of region quota capabilities. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "regionalQuotas")] + public System.Collections.Generic.IList RegionalQuotas {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/QuotaInfo.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/QuotaInfo.cs new file mode 100644 index 000000000000..649a78bc75a8 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/QuotaInfo.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The quota properties for the cluster. + /// + public partial class QuotaInfo + { + /// + /// Initializes a new instance of the QuotaInfo class. + /// + public QuotaInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the QuotaInfo class. + /// + + /// The cores used by the cluster. + /// + public QuotaInfo(int? coresUsed = default(int?)) + + { + this.CoresUsed = coresUsed; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the cores used by the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "coresUsed")] + public int? CoresUsed {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RegionalQuotaCapability.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RegionalQuotaCapability.cs new file mode 100644 index 000000000000..e5e5571fca42 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RegionalQuotaCapability.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The regional quota capacity. + /// + public partial class RegionalQuotaCapability + { + /// + /// Initializes a new instance of the RegionalQuotaCapability class. + /// + public RegionalQuotaCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RegionalQuotaCapability class. + /// + + /// The region name. + /// + + /// The number of cores used in the region. + /// + + /// The number of cores available in the region. + /// + public RegionalQuotaCapability(string regionName = default(string), long? coresUsed = default(long?), long? coresAvailable = default(long?)) + + { + this.RegionName = regionName; + this.CoresUsed = coresUsed; + this.CoresAvailable = coresAvailable; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the region name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "regionName")] + public string RegionName {get; set; } + + /// + /// Gets or sets the number of cores used in the region. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "coresUsed")] + public long? CoresUsed {get; set; } + + /// + /// Gets or sets the number of cores available in the region. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "coresAvailable")] + public long? CoresAvailable {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RegionsCapability.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RegionsCapability.cs new file mode 100644 index 000000000000..3430a03b712c --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RegionsCapability.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The regions capability. + /// + public partial class RegionsCapability + { + /// + /// Initializes a new instance of the RegionsCapability class. + /// + public RegionsCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RegionsCapability class. + /// + + /// The list of region capabilities. + /// + public RegionsCapability(System.Collections.Generic.IList available = default(System.Collections.Generic.IList)) + + { + this.Available = available; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of region capabilities. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "available")] + public System.Collections.Generic.IList Available {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Resource.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Resource.cs new file mode 100644 index 000000000000..73a68b998cb2 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Resource.cs @@ -0,0 +1,77 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Common fields that are returned in the response for all Azure Resource + /// Manager resources + /// + /// + /// Common fields that are returned in the response for all Azure Resource + /// Manager resources + /// + public partial class Resource : Microsoft.Rest.Azure.IResource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Resource class. + /// + + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + + /// The name of the resource + /// + + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + public Resource(string id = default(string), string name = default(string), string type = default(string)) + + { + this.Id = id; + this.Name = name; + this.Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id {get; private set; } + + /// + /// Gets the name of the resource + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; private set; } + + /// + /// Gets the type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "type")] + public string Type {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceId.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceId.cs new file mode 100644 index 000000000000..518b4fd667dd --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceId.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The azure resource id. + /// + public partial class ResourceId + { + /// + /// Initializes a new instance of the ResourceId class. + /// + public ResourceId() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ResourceId class. + /// + + /// The azure resource id. + /// + public ResourceId(string id = default(string)) + + { + this.Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the azure resource id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceIdentityType.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceIdentityType.cs new file mode 100644 index 000000000000..c2e6100ded6c --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceIdentityType.cs @@ -0,0 +1,21 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for ResourceIdentityType. + /// + + + public static class ResourceIdentityType + { + public const string SystemAssigned = "SystemAssigned"; + public const string UserAssigned = "UserAssigned"; + public const string SystemAssignedUserAssigned = "SystemAssigned, UserAssigned"; + public const string None = "None"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceProviderConnection.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceProviderConnection.cs new file mode 100644 index 000000000000..cda9737b409b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ResourceProviderConnection.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for ResourceProviderConnection. + /// + + + public static class ResourceProviderConnection + { + public const string Inbound = "Inbound"; + public const string Outbound = "Outbound"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Role.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Role.cs new file mode 100644 index 000000000000..af3606eb635f --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Role.cs @@ -0,0 +1,148 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Describes a role on the cluster. + /// + public partial class Role + { + /// + /// Initializes a new instance of the Role class. + /// + public Role() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Role class. + /// + + /// The name of the role. + /// + + /// The minimum instance count of the cluster. + /// + + /// The instance count of the cluster. + /// + + /// The name of the virtual machine group. + /// + + /// The autoscale configurations. + /// + + /// The hardware profile. + /// + + /// The operating system profile. + /// + + /// The virtual network profile. + /// + + /// The data disks groups for the role. + /// + + /// The list of script actions on the role. + /// + + /// Indicates whether encrypt the data disks. + /// + public Role(string name = default(string), int? minInstanceCount = default(int?), int? targetInstanceCount = default(int?), string vmGroupName = default(string), Autoscale autoscaleConfiguration = default(Autoscale), HardwareProfile hardwareProfile = default(HardwareProfile), OsProfile osProfile = default(OsProfile), VirtualNetworkProfile virtualNetworkProfile = default(VirtualNetworkProfile), System.Collections.Generic.IList dataDisksGroups = default(System.Collections.Generic.IList), System.Collections.Generic.IList scriptActions = default(System.Collections.Generic.IList), bool? encryptDataDisks = default(bool?)) + + { + this.Name = name; + this.MinInstanceCount = minInstanceCount; + this.TargetInstanceCount = targetInstanceCount; + this.VMGroupName = vmGroupName; + this.AutoscaleConfiguration = autoscaleConfiguration; + this.HardwareProfile = hardwareProfile; + this.OSProfile = osProfile; + this.VirtualNetworkProfile = virtualNetworkProfile; + this.DataDisksGroups = dataDisksGroups; + this.ScriptActions = scriptActions; + this.EncryptDataDisks = encryptDataDisks; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of the role. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the minimum instance count of the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "minInstanceCount")] + public int? MinInstanceCount {get; set; } + + /// + /// Gets or sets the instance count of the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "targetInstanceCount")] + public int? TargetInstanceCount {get; set; } + + /// + /// Gets or sets the name of the virtual machine group. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "VMGroupName")] + public string VMGroupName {get; set; } + + /// + /// Gets or sets the autoscale configurations. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "autoscale")] + public Autoscale AutoscaleConfiguration {get; set; } + + /// + /// Gets or sets the hardware profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "hardwareProfile")] + public HardwareProfile HardwareProfile {get; set; } + + /// + /// Gets or sets the operating system profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "osProfile")] + public OsProfile OSProfile {get; set; } + + /// + /// Gets or sets the virtual network profile. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "virtualNetworkProfile")] + public VirtualNetworkProfile VirtualNetworkProfile {get; set; } + + /// + /// Gets or sets the data disks groups for the role. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "dataDisksGroups")] + public System.Collections.Generic.IList DataDisksGroups {get; set; } + + /// + /// Gets or sets the list of script actions on the role. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "scriptActions")] + public System.Collections.Generic.IList ScriptActions {get; set; } + + /// + /// Gets or sets indicates whether encrypt the data disks. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "encryptDataDisks")] + public bool? EncryptDataDisks {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RoleName.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RoleName.cs new file mode 100644 index 000000000000..0c35cef359e1 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RoleName.cs @@ -0,0 +1,18 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for RoleName. + /// + + + public static class RoleName + { + public const string Workernode = "workernode"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RuntimeScriptAction.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RuntimeScriptAction.cs new file mode 100644 index 000000000000..0884af576405 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RuntimeScriptAction.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Describes a script action on a running cluster. + /// + public partial class RuntimeScriptAction + { + /// + /// Initializes a new instance of the RuntimeScriptAction class. + /// + public RuntimeScriptAction() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RuntimeScriptAction class. + /// + + /// The name of the script action. + /// + + /// The URI to the script. + /// + + /// The parameters for the script + /// + + /// The list of roles where script will be executed. + /// + + /// The application name of the script action, if any. + /// + public RuntimeScriptAction(string name, string uri, System.Collections.Generic.IList roles, string parameters = default(string), string applicationName = default(string)) + + { + this.Name = name; + this.Uri = uri; + this.Parameters = parameters; + this.Roles = roles; + this.ApplicationName = applicationName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of the script action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the URI to the script. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "uri")] + public string Uri {get; set; } + + /// + /// Gets or sets the parameters for the script + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] + public string Parameters {get; set; } + + /// + /// Gets or sets the list of roles where script will be executed. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "roles")] + public System.Collections.Generic.IList Roles {get; set; } + + /// + /// Gets the application name of the script action, if any. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "applicationName")] + public string ApplicationName {get; private set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Name == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + } + if (this.Uri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Uri"); + } + if (this.Roles == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Roles"); + } + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RuntimeScriptActionDetail.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RuntimeScriptActionDetail.cs new file mode 100644 index 000000000000..b8423fe9d85f --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/RuntimeScriptActionDetail.cs @@ -0,0 +1,140 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The execution details of a script action. + /// + public partial class RuntimeScriptActionDetail : RuntimeScriptAction + { + /// + /// Initializes a new instance of the RuntimeScriptActionDetail class. + /// + public RuntimeScriptActionDetail() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RuntimeScriptActionDetail class. + /// + + /// The name of the script action. + /// + + /// The URI to the script. + /// + + /// The parameters for the script + /// + + /// The list of roles where script will be executed. + /// + + /// The application name of the script action, if any. + /// + + /// The execution id of the script action. + /// + + /// The start time of script action execution. + /// + + /// The end time of script action execution. + /// + + /// The current execution status of the script action. + /// + + /// The reason why the script action was executed. + /// + + /// The summary of script action execution result. + /// + + /// The script action execution debug information. + /// + public RuntimeScriptActionDetail(string name, string uri, System.Collections.Generic.IList roles, string parameters = default(string), string applicationName = default(string), long? scriptExecutionId = default(long?), string startTime = default(string), string endTime = default(string), string status = default(string), string operation = default(string), System.Collections.Generic.IList executionSummary = default(System.Collections.Generic.IList), string debugInformation = default(string)) + + : base(name, uri, roles, parameters, applicationName) + { + this.ScriptExecutionId = scriptExecutionId; + this.StartTime = startTime; + this.EndTime = endTime; + this.Status = status; + this.Operation = operation; + this.ExecutionSummary = executionSummary; + this.DebugInformation = debugInformation; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the execution id of the script action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "scriptExecutionId")] + public long? ScriptExecutionId {get; private set; } + + /// + /// Gets the start time of script action execution. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "startTime")] + public string StartTime {get; private set; } + + /// + /// Gets the end time of script action execution. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "endTime")] + public string EndTime {get; private set; } + + /// + /// Gets the current execution status of the script action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "status")] + public string Status {get; private set; } + + /// + /// Gets the reason why the script action was executed. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "operation")] + public string Operation {get; private set; } + + /// + /// Gets the summary of script action execution result. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "executionSummary")] + public System.Collections.Generic.IList ExecutionSummary {get; private set; } + + /// + /// Gets the script action execution debug information. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "debugInformation")] + public string DebugInformation {get; private set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptAction.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptAction.cs new file mode 100644 index 000000000000..da3e5b2c82c7 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptAction.cs @@ -0,0 +1,92 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Describes a script action on role on the cluster. + /// + public partial class ScriptAction + { + /// + /// Initializes a new instance of the ScriptAction class. + /// + public ScriptAction() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ScriptAction class. + /// + + /// The name of the script action. + /// + + /// The URI to the script. + /// + + /// The parameters for the script provided. + /// + public ScriptAction(string name, string uri, string parameters) + + { + this.Name = name; + this.Uri = uri; + this.Parameters = parameters; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of the script action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the URI to the script. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "uri")] + public string Uri {get; set; } + + /// + /// Gets or sets the parameters for the script provided. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] + public string Parameters {get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Name == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Name"); + } + if (this.Uri == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Uri"); + } + if (this.Parameters == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Parameters"); + } + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptActionExecutionSummary.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptActionExecutionSummary.cs new file mode 100644 index 000000000000..1eb15e1e9239 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptActionExecutionSummary.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The execution summary of a script action. + /// + public partial class ScriptActionExecutionSummary + { + /// + /// Initializes a new instance of the ScriptActionExecutionSummary class. + /// + public ScriptActionExecutionSummary() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ScriptActionExecutionSummary class. + /// + + /// The status of script action execution. + /// + + /// The instance count for a given script action execution status. + /// + public ScriptActionExecutionSummary(string status = default(string), int? instanceCount = default(int?)) + + { + this.Status = status; + this.InstanceCount = instanceCount; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the status of script action execution. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "status")] + public string Status {get; private set; } + + /// + /// Gets the instance count for a given script action execution status. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "instanceCount")] + public int? InstanceCount {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptActionPersistedGetResponseSpec.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptActionPersistedGetResponseSpec.cs new file mode 100644 index 000000000000..5d3c97f5b81d --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ScriptActionPersistedGetResponseSpec.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The persisted script action for cluster. + /// + public partial class ScriptActionPersistedGetResponseSpec + { + /// + /// Initializes a new instance of the ScriptActionPersistedGetResponseSpec class. + /// + public ScriptActionPersistedGetResponseSpec() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ScriptActionPersistedGetResponseSpec class. + /// + + /// The name of script action. + /// + + /// The URI to the script. + /// + + /// The parameters for the script provided. + /// + + /// The list of roles where script will be executed. + /// + + /// The application name for the script action. + /// + public ScriptActionPersistedGetResponseSpec(string name = default(string), string uri = default(string), string parameters = default(string), System.Collections.Generic.IList roles = default(System.Collections.Generic.IList), string applicationName = default(string)) + + { + this.Name = name; + this.Uri = uri; + this.Parameters = parameters; + this.Roles = roles; + this.ApplicationName = applicationName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of script action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the URI to the script. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "uri")] + public string Uri {get; set; } + + /// + /// Gets or sets the parameters for the script provided. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "parameters")] + public string Parameters {get; set; } + + /// + /// Gets or sets the list of roles where script will be executed. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "roles")] + public System.Collections.Generic.IList Roles {get; set; } + + /// + /// Gets or sets the application name for the script action. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "applicationName")] + public string ApplicationName {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SecurityProfile.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SecurityProfile.cs new file mode 100644 index 000000000000..bb65ddbe129c --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SecurityProfile.cs @@ -0,0 +1,136 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The security profile which contains Ssh public key for the HDInsight + /// cluster. + /// + public partial class SecurityProfile + { + /// + /// Initializes a new instance of the SecurityProfile class. + /// + public SecurityProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SecurityProfile class. + /// + + /// The directory type. + /// Possible values include: 'ActiveDirectory' + + /// The organization's active directory domain. + /// + + /// The organizational unit within the Active Directory to place the cluster + /// and service accounts. + /// + + /// The LDAPS protocol URLs to communicate with the Active Directory. + /// + + /// The domain user account that will have admin privileges on the cluster. + /// + + /// The domain admin password. + /// + + /// Optional. The Distinguished Names for cluster user groups + /// + + /// The resource ID of the user's Azure Active Directory Domain Service. + /// + + /// User assigned identity that has permissions to read and create + /// cluster-related artifacts in the user's AADDS. + /// + public SecurityProfile(string directoryType = default(string), string domain = default(string), string organizationalUnitDn = default(string), System.Collections.Generic.IList ldapsUrls = default(System.Collections.Generic.IList), string domainUsername = default(string), string domainUserPassword = default(string), System.Collections.Generic.IList clusterUsersGroupDNs = default(System.Collections.Generic.IList), string aaddsResourceId = default(string), string msiResourceId = default(string)) + + { + this.DirectoryType = directoryType; + this.Domain = domain; + this.OrganizationalUnitDn = organizationalUnitDn; + this.LdapsUrls = ldapsUrls; + this.DomainUsername = domainUsername; + this.DomainUserPassword = domainUserPassword; + this.ClusterUsersGroupDNs = clusterUsersGroupDNs; + this.AaddsResourceId = aaddsResourceId; + this.MsiResourceId = msiResourceId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the directory type. Possible values include: 'ActiveDirectory' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "directoryType")] + public string DirectoryType {get; set; } + + /// + /// Gets or sets the organization's active directory domain. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "domain")] + public string Domain {get; set; } + + /// + /// Gets or sets the organizational unit within the Active Directory to place + /// the cluster and service accounts. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "organizationalUnitDN")] + public string OrganizationalUnitDn {get; set; } + + /// + /// Gets or sets the LDAPS protocol URLs to communicate with the Active + /// Directory. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "ldapsUrls")] + public System.Collections.Generic.IList LdapsUrls {get; set; } + + /// + /// Gets or sets the domain user account that will have admin privileges on the + /// cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "domainUsername")] + public string DomainUsername {get; set; } + + /// + /// Gets or sets the domain admin password. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "domainUserPassword")] + public string DomainUserPassword {get; set; } + + /// + /// Gets or sets optional. The Distinguished Names for cluster user groups + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterUsersGroupDNs")] + public System.Collections.Generic.IList ClusterUsersGroupDNs {get; set; } + + /// + /// Gets or sets the resource ID of the user's Azure Active Directory Domain + /// Service. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "aaddsResourceId")] + public string AaddsResourceId {get; set; } + + /// + /// Gets or sets user assigned identity that has permissions to read and create + /// cluster-related artifacts in the user's AADDS. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "msiResourceId")] + public string MsiResourceId {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ServiceSpecification.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ServiceSpecification.cs new file mode 100644 index 000000000000..c0d469d9fa3f --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ServiceSpecification.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The specification of the service. + /// + public partial class ServiceSpecification + { + /// + /// Initializes a new instance of the ServiceSpecification class. + /// + public ServiceSpecification() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ServiceSpecification class. + /// + + /// The metric specifications. + /// + public ServiceSpecification(System.Collections.Generic.IList metricSpecifications = default(System.Collections.Generic.IList)) + + { + this.MetricSpecifications = metricSpecifications; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the metric specifications. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "metricSpecifications")] + public System.Collections.Generic.IList MetricSpecifications {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SshProfile.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SshProfile.cs new file mode 100644 index 000000000000..0f702bd50ac7 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SshProfile.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The list of SSH public keys. + /// + public partial class SshProfile + { + /// + /// Initializes a new instance of the SshProfile class. + /// + public SshProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SshProfile class. + /// + + /// The list of SSH public keys. + /// + public SshProfile(System.Collections.Generic.IList publicKeys = default(System.Collections.Generic.IList)) + + { + this.PublicKeys = publicKeys; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of SSH public keys. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "publicKeys")] + public System.Collections.Generic.IList PublicKeys {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SshPublicKey.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SshPublicKey.cs new file mode 100644 index 000000000000..9692a2fab6c3 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SshPublicKey.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The SSH public key for the cluster nodes. + /// + public partial class SshPublicKey + { + /// + /// Initializes a new instance of the SshPublicKey class. + /// + public SshPublicKey() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SshPublicKey class. + /// + + /// The certificate for SSH. + /// + public SshPublicKey(string certificateData = default(string)) + + { + this.CertificateData = certificateData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the certificate for SSH. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "certificateData")] + public string CertificateData {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/StorageAccount.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/StorageAccount.cs new file mode 100644 index 000000000000..0b135162fd49 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/StorageAccount.cs @@ -0,0 +1,149 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The storage Account. + /// + public partial class StorageAccount + { + /// + /// Initializes a new instance of the StorageAccount class. + /// + public StorageAccount() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StorageAccount class. + /// + + /// The name of the storage account. + /// + + /// Whether or not the storage account is the default storage account. + /// + + /// The container in the storage account, only to be specified for WASB storage + /// accounts. + /// + + /// The filesystem, only to be specified for Azure Data Lake Storage Gen 2. + /// + + /// The storage account access key. + /// + + /// The resource ID of storage account, only to be specified for Azure Data + /// Lake Storage Gen 2. + /// + + /// The managed identity (MSI) that is allowed to access the storage account, + /// only to be specified for Azure Data Lake Storage Gen 2. + /// + + /// The shared access signature key. + /// + + /// The file share name. + /// + + /// Enable secure channel or not, it's an optional field. Default value is + /// false when cluster version < 5.1 and true when cluster version >= 5.1 , + /// + public StorageAccount(string name = default(string), bool? isDefault = default(bool?), string container = default(string), string fileSystem = default(string), string key = default(string), string resourceId = default(string), string msiResourceId = default(string), string saskey = default(string), string fileshare = default(string), bool? enableSecureChannel = default(bool?)) + + { + this.Name = name; + this.IsDefault = isDefault; + this.Container = container; + this.FileSystem = fileSystem; + this.Key = key; + this.ResourceId = resourceId; + this.MsiResourceId = msiResourceId; + this.Saskey = saskey; + this.Fileshare = fileshare; + this.EnableSecureChannel = enableSecureChannel; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the name of the storage account. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets whether or not the storage account is the default storage + /// account. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "isDefault")] + public bool? IsDefault {get; set; } + + /// + /// Gets or sets the container in the storage account, only to be specified for + /// WASB storage accounts. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "container")] + public string Container {get; set; } + + /// + /// Gets or sets the filesystem, only to be specified for Azure Data Lake + /// Storage Gen 2. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "fileSystem")] + public string FileSystem {get; set; } + + /// + /// Gets or sets the storage account access key. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "key")] + public string Key {get; set; } + + /// + /// Gets or sets the resource ID of storage account, only to be specified for + /// Azure Data Lake Storage Gen 2. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "resourceId")] + public string ResourceId {get; set; } + + /// + /// Gets or sets the managed identity (MSI) that is allowed to access the + /// storage account, only to be specified for Azure Data Lake Storage Gen 2. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "msiResourceId")] + public string MsiResourceId {get; set; } + + /// + /// Gets or sets the shared access signature key. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "saskey")] + public string Saskey {get; set; } + + /// + /// Gets or sets the file share name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "fileshare")] + public string Fileshare {get; set; } + + /// + /// Gets or sets enable secure channel or not, it's an optional field. Default + /// value is false when cluster version < 5.1 and true when cluster version >= + /// 5.1 , + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "enableSecureChannel")] + public bool? EnableSecureChannel {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/StorageProfile.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/StorageProfile.cs new file mode 100644 index 000000000000..cff1619a0606 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/StorageProfile.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The storage profile. + /// + public partial class StorageProfile + { + /// + /// Initializes a new instance of the StorageProfile class. + /// + public StorageProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StorageProfile class. + /// + + /// The list of storage accounts in the cluster. + /// + public StorageProfile(System.Collections.Generic.IList storageaccounts = default(System.Collections.Generic.IList)) + + { + this.Storageaccounts = storageaccounts; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of storage accounts in the cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "storageaccounts")] + public System.Collections.Generic.IList Storageaccounts {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SystemData.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SystemData.cs new file mode 100644 index 000000000000..21e5c83ffe6c --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/SystemData.cs @@ -0,0 +1,98 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// Metadata pertaining to creation and last modification of the resource. + /// + public partial class SystemData + { + /// + /// Initializes a new instance of the SystemData class. + /// + public SystemData() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SystemData class. + /// + + /// The identity that created the resource. + /// + + /// The type of identity that created the resource. + /// Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key' + + /// The timestamp of resource creation (UTC). + /// + + /// The identity that last modified the resource. + /// + + /// The type of identity that last modified the resource. + /// Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key' + + /// The timestamp of resource last modification (UTC) + /// + public SystemData(string createdBy = default(string), string createdByType = default(string), System.DateTime? createdAt = default(System.DateTime?), string lastModifiedBy = default(string), string lastModifiedByType = default(string), System.DateTime? lastModifiedAt = default(System.DateTime?)) + + { + this.CreatedBy = createdBy; + this.CreatedByType = createdByType; + this.CreatedAt = createdAt; + this.LastModifiedBy = lastModifiedBy; + this.LastModifiedByType = lastModifiedByType; + this.LastModifiedAt = lastModifiedAt; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the identity that created the resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "createdBy")] + public string CreatedBy {get; set; } + + /// + /// Gets or sets the type of identity that created the resource. Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "createdByType")] + public string CreatedByType {get; set; } + + /// + /// Gets or sets the timestamp of resource creation (UTC). + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "createdAt")] + public System.DateTime? CreatedAt {get; set; } + + /// + /// Gets or sets the identity that last modified the resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "lastModifiedBy")] + public string LastModifiedBy {get; set; } + + /// + /// Gets or sets the type of identity that last modified the resource. Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "lastModifiedByType")] + public string LastModifiedByType {get; set; } + + /// + /// Gets or sets the timestamp of resource last modification (UTC) + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "lastModifiedAt")] + public System.DateTime? LastModifiedAt {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Tier.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Tier.cs new file mode 100644 index 000000000000..c4b3010b594c --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Tier.cs @@ -0,0 +1,19 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + + /// + /// Defines values for Tier. + /// + + + public static class Tier + { + public const string Standard = "Standard"; + public const string Premium = "Premium"; + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/TrackedResource.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/TrackedResource.cs new file mode 100644 index 000000000000..96183b1bf8af --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/TrackedResource.cs @@ -0,0 +1,90 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The resource model definition for an Azure Resource Manager tracked top + /// level resource which has 'tags' and a 'location' + /// + /// + /// The resource model definition for an Azure Resource Manager tracked top + /// level resource which has 'tags' and a 'location' + /// + public partial class TrackedResource : Resource + { + /// + /// Initializes a new instance of the TrackedResource class. + /// + public TrackedResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the TrackedResource class. + /// + + /// Fully qualified resource ID for the resource. Ex - + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + /// + + /// The name of the resource + /// + + /// The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or + /// "Microsoft.Storage/storageAccounts" + /// + + /// Resource tags. + /// + + /// The geo-location where the resource lives + /// + public TrackedResource(string location, string id = default(string), string name = default(string), string type = default(string), System.Collections.Generic.IDictionary tags = default(System.Collections.Generic.IDictionary)) + + : base(id, name, type) + { + this.Tags = tags; + this.Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets resource tags. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "tags")] + public System.Collections.Generic.IDictionary Tags {get; set; } + + /// + /// Gets or sets the geo-location where the resource lives + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "location")] + public string Location {get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Location == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "Location"); + } + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UpdateClusterIdentityCertificateParameters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UpdateClusterIdentityCertificateParameters.cs new file mode 100644 index 000000000000..292e238cccd8 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UpdateClusterIdentityCertificateParameters.cs @@ -0,0 +1,68 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The update cluster identity certificate request parameters. + /// + public partial class UpdateClusterIdentityCertificateParameters + { + /// + /// Initializes a new instance of the UpdateClusterIdentityCertificateParameters class. + /// + public UpdateClusterIdentityCertificateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UpdateClusterIdentityCertificateParameters class. + /// + + /// The application id. + /// + + /// The certificate in base64 encoded format. + /// + + /// The password of the certificate. + /// + public UpdateClusterIdentityCertificateParameters(string applicationId = default(string), string certificate = default(string), string certificatePassword = default(string)) + + { + this.ApplicationId = applicationId; + this.Certificate = certificate; + this.CertificatePassword = certificatePassword; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the application id. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "applicationId")] + public string ApplicationId {get; set; } + + /// + /// Gets or sets the certificate in base64 encoded format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "certificate")] + public string Certificate {get; set; } + + /// + /// Gets or sets the password of the certificate. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "certificatePassword")] + public string CertificatePassword {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UpdateGatewaySettingsParameters.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UpdateGatewaySettingsParameters.cs new file mode 100644 index 000000000000..e79589c55a4f --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UpdateGatewaySettingsParameters.cs @@ -0,0 +1,70 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The update gateway settings request parameters. + /// + public partial class UpdateGatewaySettingsParameters + { + /// + /// Initializes a new instance of the UpdateGatewaySettingsParameters class. + /// + public UpdateGatewaySettingsParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UpdateGatewaySettingsParameters class. + /// + + /// Indicates whether or not the gateway settings based authorization is + /// enabled. + /// + + /// The gateway settings user name. + /// + + /// The gateway settings user password. + /// + public UpdateGatewaySettingsParameters(bool? isCredentialEnabled = default(bool?), string userName = default(string), string password = default(string)) + + { + this.IsCredentialEnabled = isCredentialEnabled; + this.UserName = userName; + this.Password = password; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets indicates whether or not the gateway settings based + /// authorization is enabled. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "restAuthCredential.isEnabled")] + public bool? IsCredentialEnabled {get; set; } + + /// + /// Gets or sets the gateway settings user name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "restAuthCredential.username")] + public string UserName {get; set; } + + /// + /// Gets or sets the gateway settings user password. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "restAuthCredential.password")] + public string Password {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Usage.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Usage.cs new file mode 100644 index 000000000000..dfc5e6b10a08 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/Usage.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The details about the usage of a particular limited resource. + /// + public partial class Usage + { + /// + /// Initializes a new instance of the Usage class. + /// + public Usage() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Usage class. + /// + + /// The type of measurement for usage. + /// + + /// The current usage. + /// + + /// The maximum allowed usage. + /// + + /// The details about the localizable name of the used resource. + /// + public Usage(string unit = default(string), long? currentValue = default(long?), long? limit = default(long?), LocalizedName name = default(LocalizedName)) + + { + this.Unit = unit; + this.CurrentValue = currentValue; + this.Limit = limit; + this.Name = name; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the type of measurement for usage. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "unit")] + public string Unit {get; set; } + + /// + /// Gets or sets the current usage. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "currentValue")] + public long? CurrentValue {get; set; } + + /// + /// Gets or sets the maximum allowed usage. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "limit")] + public long? Limit {get; set; } + + /// + /// Gets the details about the localizable name of the used resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public LocalizedName Name {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UsagesListResult.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UsagesListResult.cs new file mode 100644 index 000000000000..7911d153a2c3 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UsagesListResult.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The response for the operation to get regional usages for a subscription. + /// + public partial class UsagesListResult + { + /// + /// Initializes a new instance of the UsagesListResult class. + /// + public UsagesListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UsagesListResult class. + /// + + /// The list of usages. + /// + public UsagesListResult(System.Collections.Generic.IList value = default(System.Collections.Generic.IList)) + + { + this.Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of usages. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "value")] + public System.Collections.Generic.IList Value {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UserAssignedIdentity.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UserAssignedIdentity.cs new file mode 100644 index 000000000000..eb1a2e2a2dba --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/UserAssignedIdentity.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The User Assigned Identity + /// + public partial class UserAssignedIdentity + { + /// + /// Initializes a new instance of the UserAssignedIdentity class. + /// + public UserAssignedIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UserAssignedIdentity class. + /// + + /// The principal id of user assigned identity. + /// + + /// The client id of user assigned identity. + /// + public UserAssignedIdentity(string principalId = default(string), string clientId = default(string)) + + { + this.PrincipalId = principalId; + this.ClientId = clientId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets the principal id of user assigned identity. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "principalId")] + public string PrincipalId {get; private set; } + + /// + /// Gets the client id of user assigned identity. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clientId")] + public string ClientId {get; private set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ValidationErrorInfo.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ValidationErrorInfo.cs new file mode 100644 index 000000000000..37779d5c8366 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/ValidationErrorInfo.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The validation error information. + /// + public partial class ValidationErrorInfo + { + /// + /// Initializes a new instance of the ValidationErrorInfo class. + /// + public ValidationErrorInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ValidationErrorInfo class. + /// + + /// The error code. + /// + + /// The error message. + /// + + /// The error resource. + /// + + /// The message arguments + /// + public ValidationErrorInfo(string code = default(string), string message = default(string), string errorResource = default(string), System.Collections.Generic.IList messageArguments = default(System.Collections.Generic.IList)) + + { + this.Code = code; + this.Message = message; + this.ErrorResource = errorResource; + this.MessageArguments = messageArguments; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the error code. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "code")] + public string Code {get; set; } + + /// + /// Gets or sets the error message. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "message")] + public string Message {get; set; } + + /// + /// Gets or sets the error resource. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "errorResource")] + public string ErrorResource {get; set; } + + /// + /// Gets or sets the message arguments + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "messageArguments")] + public System.Collections.Generic.IList MessageArguments {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VersionSpec.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VersionSpec.cs new file mode 100644 index 000000000000..53442c3706dc --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VersionSpec.cs @@ -0,0 +1,78 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The version properties. + /// + public partial class VersionSpec + { + /// + /// Initializes a new instance of the VersionSpec class. + /// + public VersionSpec() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VersionSpec class. + /// + + /// The friendly name + /// + + /// The display name + /// + + /// Whether or not the version is the default version. + /// + + /// The component version property. + /// + public VersionSpec(string friendlyName = default(string), string displayName = default(string), bool? isDefault = default(bool?), System.Collections.Generic.IDictionary componentVersions = default(System.Collections.Generic.IDictionary)) + + { + this.FriendlyName = friendlyName; + this.DisplayName = displayName; + this.IsDefault = isDefault; + this.ComponentVersions = componentVersions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the friendly name + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "friendlyName")] + public string FriendlyName {get; set; } + + /// + /// Gets or sets the display name + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "displayName")] + public string DisplayName {get; set; } + + /// + /// Gets or sets whether or not the version is the default version. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "isDefault")] + public bool? IsDefault {get; set; } + + /// + /// Gets or sets the component version property. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "componentVersions")] + public System.Collections.Generic.IDictionary ComponentVersions {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VersionsCapability.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VersionsCapability.cs new file mode 100644 index 000000000000..e85605c0d1a0 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VersionsCapability.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The version capability. + /// + public partial class VersionsCapability + { + /// + /// Initializes a new instance of the VersionsCapability class. + /// + public VersionsCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VersionsCapability class. + /// + + /// The list of version capabilities. + /// + public VersionsCapability(System.Collections.Generic.IList available = default(System.Collections.Generic.IList)) + + { + this.Available = available; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the list of version capabilities. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "available")] + public System.Collections.Generic.IList Available {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VirtualNetworkProfile.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VirtualNetworkProfile.cs new file mode 100644 index 000000000000..b034594475b7 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VirtualNetworkProfile.cs @@ -0,0 +1,58 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The virtual network properties. + /// + public partial class VirtualNetworkProfile + { + /// + /// Initializes a new instance of the VirtualNetworkProfile class. + /// + public VirtualNetworkProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VirtualNetworkProfile class. + /// + + /// The ID of the virtual network. + /// + + /// The name of the subnet. + /// + public VirtualNetworkProfile(string id = default(string), string subnet = default(string)) + + { + this.Id = id; + this.Subnet = subnet; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the ID of the virtual network. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "id")] + public string Id {get; set; } + + /// + /// Gets or sets the name of the subnet. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "subnet")] + public string Subnet {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VmSizeCompatibilityFilterV2.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VmSizeCompatibilityFilterV2.cs new file mode 100644 index 000000000000..34325a7f9617 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VmSizeCompatibilityFilterV2.cs @@ -0,0 +1,140 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// This class represent a single filter object that defines a multidimensional + /// set. The dimensions of this set are Regions, ClusterFlavors, NodeTypes and + /// ClusterVersions. The constraint should be defined based on the following: + /// FilterMode (Exclude vs Include), VMSizes (the vm sizes in affect of + /// exclusion/inclusion) and the ordering of the Filters. Later filters + /// override previous settings if conflicted. + /// + public partial class VmSizeCompatibilityFilterV2 + { + /// + /// Initializes a new instance of the VmSizeCompatibilityFilterV2 class. + /// + public VmSizeCompatibilityFilterV2() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VmSizeCompatibilityFilterV2 class. + /// + + /// The filtering mode. Effectively this can enabling or disabling the VM sizes + /// in a particular set. + /// Possible values include: 'Exclude', 'Include', 'Recommend', 'Default' + + /// The list of regions under the effect of the filter. + /// + + /// The list of cluster flavors under the effect of the filter. + /// + + /// The list of node types affected by the filter. + /// + + /// The list of cluster versions affected in Major.Minor format. + /// + + /// The OSType affected, Windows or Linux. + /// + + /// The list of virtual machine sizes to include or exclude. + /// + + /// Whether apply for ESP cluster. 'true' means only for ESP, 'false' means + /// only for non-ESP, null or empty string or others mean for both. + /// + + /// Whether support compute isolation. 'true' means only for + /// ComputeIsolationEnabled, 'false' means only for regular cluster. + /// + public VmSizeCompatibilityFilterV2(string filterMode = default(string), System.Collections.Generic.IList regions = default(System.Collections.Generic.IList), System.Collections.Generic.IList clusterFlavors = default(System.Collections.Generic.IList), System.Collections.Generic.IList nodeTypes = default(System.Collections.Generic.IList), System.Collections.Generic.IList clusterVersions = default(System.Collections.Generic.IList), System.Collections.Generic.IList osType = default(System.Collections.Generic.IList), System.Collections.Generic.IList vmSizes = default(System.Collections.Generic.IList), string espApplied = default(string), string computeIsolationSupported = default(string)) + + { + this.FilterMode = filterMode; + this.Regions = regions; + this.ClusterFlavors = clusterFlavors; + this.NodeTypes = nodeTypes; + this.ClusterVersions = clusterVersions; + this.OSType = osType; + this.VMSizes = vmSizes; + this.EspApplied = espApplied; + this.ComputeIsolationSupported = computeIsolationSupported; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the filtering mode. Effectively this can enabling or disabling + /// the VM sizes in a particular set. Possible values include: 'Exclude', 'Include', 'Recommend', 'Default' + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "filterMode")] + public string FilterMode {get; set; } + + /// + /// Gets or sets the list of regions under the effect of the filter. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "regions")] + public System.Collections.Generic.IList Regions {get; set; } + + /// + /// Gets or sets the list of cluster flavors under the effect of the filter. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterFlavors")] + public System.Collections.Generic.IList ClusterFlavors {get; set; } + + /// + /// Gets or sets the list of node types affected by the filter. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "nodeTypes")] + public System.Collections.Generic.IList NodeTypes {get; set; } + + /// + /// Gets or sets the list of cluster versions affected in Major.Minor format. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "clusterVersions")] + public System.Collections.Generic.IList ClusterVersions {get; set; } + + /// + /// Gets or sets the OSType affected, Windows or Linux. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "osType")] + public System.Collections.Generic.IList OSType {get; set; } + + /// + /// Gets or sets the list of virtual machine sizes to include or exclude. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "vmSizes")] + public System.Collections.Generic.IList VMSizes {get; set; } + + /// + /// Gets or sets whether apply for ESP cluster. 'true' means only for ESP, + /// 'false' means only for non-ESP, null or empty string or others mean for + /// both. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "espApplied")] + public string EspApplied {get; set; } + + /// + /// Gets or sets whether support compute isolation. 'true' means only for + /// ComputeIsolationEnabled, 'false' means only for regular cluster. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "computeIsolationSupported")] + public string ComputeIsolationSupported {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VmSizeProperty.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VmSizeProperty.cs new file mode 100644 index 000000000000..5a2fc7defe32 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Models/VmSizeProperty.cs @@ -0,0 +1,142 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight.Models +{ + using System.Linq; + + /// + /// The vm size property + /// + public partial class VmSizeProperty + { + /// + /// Initializes a new instance of the VmSizeProperty class. + /// + public VmSizeProperty() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VmSizeProperty class. + /// + + /// The vm size name. + /// + + /// The number of cores that the vm size has. + /// + + /// The data disk storage tier of the vm size. + /// + + /// The label of the vm size. + /// + + /// The max data disk count of the vm size. + /// + + /// The memory whose unit is MB of the vm size. + /// + + /// This indicates this vm size is supported by virtual machines or not + /// + + /// The indicates this vm size is supported by web worker roles or not + /// + + /// The virtual machine resource disk size whose unit is MB of the vm size. + /// + + /// The web worker resource disk size whose unit is MB of the vm size. + /// + public VmSizeProperty(string name = default(string), int? cores = default(int?), string dataDiskStorageTier = default(string), string label = default(string), long? maxDataDiskCount = default(long?), long? memoryInMb = default(long?), bool? supportedByVirtualMachines = default(bool?), bool? supportedByWebWorkerRoles = default(bool?), long? virtualMachineResourceDiskSizeInMb = default(long?), long? webWorkerResourceDiskSizeInMb = default(long?)) + + { + this.Name = name; + this.Cores = cores; + this.DataDiskStorageTier = dataDiskStorageTier; + this.Label = label; + this.MaxDataDiskCount = maxDataDiskCount; + this.MemoryInMb = memoryInMb; + this.SupportedByVirtualMachines = supportedByVirtualMachines; + this.SupportedByWebWorkerRoles = supportedByWebWorkerRoles; + this.VirtualMachineResourceDiskSizeInMb = virtualMachineResourceDiskSizeInMb; + this.WebWorkerResourceDiskSizeInMb = webWorkerResourceDiskSizeInMb; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + + /// + /// Gets or sets the vm size name. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "name")] + public string Name {get; set; } + + /// + /// Gets or sets the number of cores that the vm size has. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "cores")] + public int? Cores {get; set; } + + /// + /// Gets or sets the data disk storage tier of the vm size. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "dataDiskStorageTier")] + public string DataDiskStorageTier {get; set; } + + /// + /// Gets or sets the label of the vm size. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "label")] + public string Label {get; set; } + + /// + /// Gets or sets the max data disk count of the vm size. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "maxDataDiskCount")] + public long? MaxDataDiskCount {get; set; } + + /// + /// Gets or sets the memory whose unit is MB of the vm size. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "memoryInMb")] + public long? MemoryInMb {get; set; } + + /// + /// Gets or sets this indicates this vm size is supported by virtual machines + /// or not + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "supportedByVirtualMachines")] + public bool? SupportedByVirtualMachines {get; set; } + + /// + /// Gets or sets the indicates this vm size is supported by web worker roles or + /// not + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "supportedByWebWorkerRoles")] + public bool? SupportedByWebWorkerRoles {get; set; } + + /// + /// Gets or sets the virtual machine resource disk size whose unit is MB of the + /// vm size. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "virtualMachineResourceDiskSizeInMb")] + public long? VirtualMachineResourceDiskSizeInMb {get; set; } + + /// + /// Gets or sets the web worker resource disk size whose unit is MB of the vm + /// size. + /// + [Newtonsoft.Json.JsonProperty(PropertyName = "webWorkerResourceDiskSizeInMb")] + public long? WebWorkerResourceDiskSizeInMb {get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/Operations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/Operations.cs new file mode 100644 index 000000000000..8d890d97ff30 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/Operations.cs @@ -0,0 +1,401 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Operations operations. + /// + internal partial class Operations : Microsoft.Rest.IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.HDInsight/operations").ToString(); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/OperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..ac320cb3dd7b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/OperationsExtensions.cs @@ -0,0 +1,76 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for Operations + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static Microsoft.Rest.Azure.IPage List(this IOperations operations) + { + return ((IOperations)operations).ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListAsync(this IOperations operations, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListNext(this IOperations operations, string nextPageLink) + { + return ((IOperations)operations).ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available HDInsight REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListNextAsync(this IOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateEndpointConnectionsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateEndpointConnectionsOperations.cs new file mode 100644 index 000000000000..cb248d5b9622 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateEndpointConnectionsOperations.cs @@ -0,0 +1,1146 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// PrivateEndpointConnectionsOperations operations. + /// + internal partial class PrivateEndpointConnectionsOperations : Microsoft.Rest.IServiceOperations, IPrivateEndpointConnectionsOperations + { + /// + /// Initializes a new instance of the PrivateEndpointConnectionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PrivateEndpointConnectionsOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByCluster", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/privateEndpointConnections").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The private link service connection state. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, privateLinkServiceConnectionState, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the specific private endpoint connection. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (privateEndpointConnectionName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The private link service connection state. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (privateEndpointConnectionName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + + PrivateEndpointConnection parameters = new PrivateEndpointConnection(); + if(privateLinkServiceConnectionState != null) + { + parameters.PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + + tracingParameters.Add("parameters", parameters); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (privateEndpointConnectionName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByClusterNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateEndpointConnectionsOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateEndpointConnectionsOperationsExtensions.cs new file mode 100644 index 000000000000..d1f1831f308b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateEndpointConnectionsOperationsExtensions.cs @@ -0,0 +1,307 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for PrivateEndpointConnectionsOperations + /// + public static partial class PrivateEndpointConnectionsOperationsExtensions + { + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static Microsoft.Rest.Azure.IPage ListByCluster(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName) + { + return ((IPrivateEndpointConnectionsOperations)operations).ListByClusterAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByClusterAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + public static PrivateEndpointConnection CreateOrUpdate(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState) + { + return ((IPrivateEndpointConnectionsOperations)operations).CreateOrUpdateAsync(resourceGroupName, clusterName, privateEndpointConnectionName, privateLinkServiceConnectionState).GetAwaiter().GetResult(); + } + + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task CreateOrUpdateAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, privateLinkServiceConnectionState, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Gets the specific private endpoint connection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + public static PrivateEndpointConnection Get(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName) + { + return ((IPrivateEndpointConnectionsOperations)operations).GetAsync(resourceGroupName, clusterName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Gets the specific private endpoint connection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + public static void Delete(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName) + { + ((IPrivateEndpointConnectionsOperations)operations).DeleteAsync(resourceGroupName, clusterName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + public static PrivateEndpointConnection BeginCreateOrUpdate(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState) + { + return ((IPrivateEndpointConnectionsOperations)operations).BeginCreateOrUpdateAsync(resourceGroupName, clusterName, privateEndpointConnectionName, privateLinkServiceConnectionState).GetAwaiter().GetResult(); + } + + /// + /// Approve or reject a private endpoint connection manually. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginCreateOrUpdateAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateLinkServiceConnectionState privateLinkServiceConnectionState, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, privateLinkServiceConnectionState, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + public static void BeginDelete(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName) + { + ((IPrivateEndpointConnectionsOperations)operations).BeginDeleteAsync(resourceGroupName, clusterName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specific private endpoint connection. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private endpoint connection. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginDeleteAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string clusterName, string privateEndpointConnectionName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListByClusterNext(this IPrivateEndpointConnectionsOperations operations, string nextPageLink) + { + return ((IPrivateEndpointConnectionsOperations)operations).ListByClusterNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the private endpoint connections for a HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByClusterNextAsync(this IPrivateEndpointConnectionsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateLinkResourcesOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateLinkResourcesOperations.cs new file mode 100644 index 000000000000..4beca7ccb7ed --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateLinkResourcesOperations.cs @@ -0,0 +1,468 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// PrivateLinkResourcesOperations operations. + /// + internal partial class PrivateLinkResourcesOperations : Microsoft.Rest.IServiceOperations, IPrivateLinkResourcesOperations + { + /// + /// Initializes a new instance of the PrivateLinkResourcesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PrivateLinkResourcesOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Lists the private link resources in a HDInsight cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByCluster", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/privateLinkResources").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Gets the specific private link resource. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private link resource. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, string privateLinkResourceName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (privateLinkResourceName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "privateLinkResourceName"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("privateLinkResourceName", privateLinkResourceName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/privateLinkResources/{privateLinkResourceName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{privateLinkResourceName}", System.Uri.EscapeDataString(privateLinkResourceName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateLinkResourcesOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateLinkResourcesOperationsExtensions.cs new file mode 100644 index 000000000000..90ab3a229ad4 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/PrivateLinkResourcesOperationsExtensions.cs @@ -0,0 +1,100 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for PrivateLinkResourcesOperations + /// + public static partial class PrivateLinkResourcesOperationsExtensions + { + /// + /// Lists the private link resources in a HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static PrivateLinkResourceListResult ListByCluster(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName) + { + return ((IPrivateLinkResourcesOperations)operations).ListByClusterAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Lists the private link resources in a HDInsight cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task ListByClusterAsync(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Gets the specific private link resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private link resource. + /// + public static PrivateLinkResource Get(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName, string privateLinkResourceName) + { + return ((IPrivateLinkResourcesOperations)operations).GetAsync(resourceGroupName, clusterName, privateLinkResourceName).GetAwaiter().GetResult(); + } + + /// + /// Gets the specific private link resource. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the private link resource. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsync(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string clusterName, string privateLinkResourceName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, privateLinkResourceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptActionsOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptActionsOperations.cs new file mode 100644 index 000000000000..5f2842fafa2b --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptActionsOperations.cs @@ -0,0 +1,1060 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// ScriptActionsOperations operations. + /// + internal partial class ScriptActionsOperations : Microsoft.Rest.IServiceOperations, IScriptActionsOperations + { + /// + /// Initializes a new instance of the ScriptActionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ScriptActionsOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Deletes a specified persisted script action of the cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the script. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string scriptName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (scriptName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "scriptName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("scriptName", scriptName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/scriptActions/{scriptName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{scriptName}", System.Uri.EscapeDataString(scriptName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByCluster", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/scriptActions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Gets the script execution detail for the given script execution ID. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The script execution Id + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetExecutionDetailWithHttpMessagesAsync(string resourceGroupName, string clusterName, string scriptExecutionId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (scriptExecutionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "scriptExecutionId"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("scriptExecutionId", scriptExecutionId); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetExecutionDetail", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/scriptExecutionHistory/{scriptExecutionId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{scriptExecutionId}", System.Uri.EscapeDataString(scriptExecutionId)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Gets the async operation status of execution operation. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetExecutionAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (operationId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "operationId"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("operationId", operationId); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetExecutionAsyncOperationStatus", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/executeScriptActions/azureasyncoperations/{operationId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByClusterNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptActionsOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptActionsOperationsExtensions.cs new file mode 100644 index 000000000000..ecb6516512ff --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptActionsOperationsExtensions.cs @@ -0,0 +1,220 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for ScriptActionsOperations + /// + public static partial class ScriptActionsOperationsExtensions + { + /// + /// Deletes a specified persisted script action of the cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the script. + /// + public static void Delete(this IScriptActionsOperations operations, string resourceGroupName, string clusterName, string scriptName) + { + ((IScriptActionsOperations)operations).DeleteAsync(resourceGroupName, clusterName, scriptName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a specified persisted script action of the cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The name of the script. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task DeleteAsync(this IScriptActionsOperations operations, string resourceGroupName, string clusterName, string scriptName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, scriptName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static Microsoft.Rest.Azure.IPage ListByCluster(this IScriptActionsOperations operations, string resourceGroupName, string clusterName) + { + return ((IScriptActionsOperations)operations).ListByClusterAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByClusterAsync(this IScriptActionsOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Gets the script execution detail for the given script execution ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The script execution Id + /// + public static RuntimeScriptActionDetail GetExecutionDetail(this IScriptActionsOperations operations, string resourceGroupName, string clusterName, string scriptExecutionId) + { + return ((IScriptActionsOperations)operations).GetExecutionDetailAsync(resourceGroupName, clusterName, scriptExecutionId).GetAwaiter().GetResult(); + } + + /// + /// Gets the script execution detail for the given script execution ID. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The script execution Id + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetExecutionDetailAsync(this IScriptActionsOperations operations, string resourceGroupName, string clusterName, string scriptExecutionId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetExecutionDetailWithHttpMessagesAsync(resourceGroupName, clusterName, scriptExecutionId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Gets the async operation status of execution operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + public static AsyncOperationResult GetExecutionAsyncOperationStatus(this IScriptActionsOperations operations, string resourceGroupName, string clusterName, string operationId) + { + return ((IScriptActionsOperations)operations).GetExecutionAsyncOperationStatusAsync(resourceGroupName, clusterName, operationId).GetAwaiter().GetResult(); + } + + /// + /// Gets the async operation status of execution operation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetExecutionAsyncOperationStatusAsync(this IScriptActionsOperations operations, string resourceGroupName, string clusterName, string operationId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetExecutionAsyncOperationStatusWithHttpMessagesAsync(resourceGroupName, clusterName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListByClusterNext(this IScriptActionsOperations operations, string nextPageLink) + { + return ((IScriptActionsOperations)operations).ListByClusterNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all the persisted script actions for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByClusterNextAsync(this IScriptActionsOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptExecutionHistoryOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptExecutionHistoryOperations.cs new file mode 100644 index 000000000000..43c50ed4ad74 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptExecutionHistoryOperations.cs @@ -0,0 +1,624 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// ScriptExecutionHistoryOperations operations. + /// + internal partial class ScriptExecutionHistoryOperations : Microsoft.Rest.IServiceOperations, IScriptExecutionHistoryOperations + { + /// + /// Initializes a new instance of the ScriptExecutionHistoryOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ScriptExecutionHistoryOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByClusterWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByCluster", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/scriptExecutionHistory").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Promotes the specified ad-hoc script execution to a persisted script. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The script execution Id + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task PromoteWithHttpMessagesAsync(string resourceGroupName, string clusterName, string scriptExecutionId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (scriptExecutionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "scriptExecutionId"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("scriptExecutionId", scriptExecutionId); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "Promote", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/scriptExecutionHistory/{scriptExecutionId}/promote").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{scriptExecutionId}", System.Uri.EscapeDataString(scriptExecutionId)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListByClusterNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + if (nextPageLink == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListByClusterNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptExecutionHistoryOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptExecutionHistoryOperationsExtensions.cs new file mode 100644 index 000000000000..bd7a6d81da2d --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/ScriptExecutionHistoryOperationsExtensions.cs @@ -0,0 +1,130 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for ScriptExecutionHistoryOperations + /// + public static partial class ScriptExecutionHistoryOperationsExtensions + { + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static Microsoft.Rest.Azure.IPage ListByCluster(this IScriptExecutionHistoryOperations operations, string resourceGroupName, string clusterName) + { + return ((IScriptExecutionHistoryOperations)operations).ListByClusterAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByClusterAsync(this IScriptExecutionHistoryOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Promotes the specified ad-hoc script execution to a persisted script. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The script execution Id + /// + public static void Promote(this IScriptExecutionHistoryOperations operations, string resourceGroupName, string clusterName, string scriptExecutionId) + { + ((IScriptExecutionHistoryOperations)operations).PromoteAsync(resourceGroupName, clusterName, scriptExecutionId).GetAwaiter().GetResult(); + } + + /// + /// Promotes the specified ad-hoc script execution to a persisted script. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The script execution Id + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task PromoteAsync(this IScriptExecutionHistoryOperations operations, string resourceGroupName, string clusterName, string scriptExecutionId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.PromoteWithHttpMessagesAsync(resourceGroupName, clusterName, scriptExecutionId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static Microsoft.Rest.Azure.IPage ListByClusterNext(this IScriptExecutionHistoryOperations operations, string nextPageLink) + { + return ((IScriptExecutionHistoryOperations)operations).ListByClusterNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all scripts' execution history for the specified cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListByClusterNextAsync(this IScriptExecutionHistoryOperations operations, string nextPageLink, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListByClusterNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/VirtualMachinesOperations.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/VirtualMachinesOperations.cs new file mode 100644 index 000000000000..7fe2a926e820 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/VirtualMachinesOperations.cs @@ -0,0 +1,695 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. + +namespace Microsoft.Azure.Management.HDInsight +{ + using System.Linq; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// VirtualMachinesOperations operations. + /// + internal partial class VirtualMachinesOperations : Microsoft.Rest.IServiceOperations, IVirtualMachinesOperations + { + /// + /// Initializes a new instance of the VirtualMachinesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal VirtualMachinesOperations (HDInsightManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the HDInsightManagementClient + /// + public HDInsightManagementClient Client { get; private set; } + + /// + /// Lists the HDInsight clusters hosts + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task>> ListHostsWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "ListHosts", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/listHosts").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The list of hosts to restart + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async System.Threading.Tasks.Task RestartHostsWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.IList hosts, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + // Send Request + Microsoft.Rest.Azure.AzureOperationResponse _response = await BeginRestartHostsWithHttpMessagesAsync(resourceGroupName, clusterName, hosts, customHeaders, cancellationToken).ConfigureAwait(false); + return await this.Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the async operation status. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task> GetAsyncOperationStatusWithHttpMessagesAsync(string resourceGroupName, string clusterName, string operationId, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + if (operationId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "operationId"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("operationId", operationId); + + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "GetAsyncOperationStatus", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/restartHosts/azureasyncoperations/{operationId}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{operationId}", System.Uri.EscapeDataString(operationId)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + } + catch (Newtonsoft.Json.JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new Microsoft.Rest.SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The list of hosts to restart + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async System.Threading.Tasks.Task BeginRestartHostsWithHttpMessagesAsync(string resourceGroupName, string clusterName, System.Collections.Generic.IList hosts, System.Collections.Generic.Dictionary> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + + + + + if (hosts == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "hosts"); + } + + if (this.Client.SubscriptionId == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + + if (resourceGroupName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "resourceGroupName"); + } + + if (clusterName == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "clusterName"); + } + + if (this.Client.ApiVersion == null) + { + throw new Microsoft.Rest.ValidationException(Microsoft.Rest.ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + + // Tracing + bool _shouldTrace = Microsoft.Rest.ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = Microsoft.Rest.ServiceClientTracing.NextInvocationId.ToString(); + System.Collections.Generic.Dictionary tracingParameters = new System.Collections.Generic.Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + + tracingParameters.Add("hosts", hosts); + + tracingParameters.Add("cancellationToken", cancellationToken); + Microsoft.Rest.ServiceClientTracing.Enter(_invocationId, this, "BeginRestartHosts", tracingParameters); + } + // Construct URL + + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusters/{clusterName}/restartHosts").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(this.Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + + System.Collections.Generic.List _queryParameters = new System.Collections.Generic.List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new System.Net.Http.HttpRequestMessage(); + System.Net.Http.HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new System.Net.Http.HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (this.Client.GenerateClientRequestId != null && this.Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (this.Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.Client.AcceptLanguage); + } + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + // Serialize Request + string _requestContent = null; + if(hosts != null) + { + _requestContent = Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(hosts, this.Client.SerializationSettings); + _httpRequest.Content = new System.Net.Http.StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + + System.Net.HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, this.Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (Newtonsoft.Json.JsonException) + { + // Ignore the exception + } + ex.Request = new Microsoft.Rest.HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new Microsoft.Rest.HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new Microsoft.Rest.Azure.AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + Microsoft.Rest.ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + + + + + + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Generated/VirtualMachinesOperationsExtensions.cs b/src/HDInsight/HDInsight.Management.Sdk/Generated/VirtualMachinesOperationsExtensions.cs new file mode 100644 index 000000000000..d94ef5a79c45 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Generated/VirtualMachinesOperationsExtensions.cs @@ -0,0 +1,172 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is regenerated. +namespace Microsoft.Azure.Management.HDInsight +{ + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for VirtualMachinesOperations + /// + public static partial class VirtualMachinesOperationsExtensions + { + /// + /// Lists the HDInsight clusters hosts + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static System.Collections.Generic.IList ListHosts(this IVirtualMachinesOperations operations, string resourceGroupName, string clusterName) + { + return ((IVirtualMachinesOperations)operations).ListHostsAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Lists the HDInsight clusters hosts + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task> ListHostsAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string clusterName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.ListHostsWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void RestartHosts(this IVirtualMachinesOperations operations, string resourceGroupName, string clusterName, System.Collections.Generic.IList hosts) + { + ((IVirtualMachinesOperations)operations).RestartHostsAsync(resourceGroupName, clusterName, hosts).GetAwaiter().GetResult(); + } + + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task RestartHostsAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string clusterName, System.Collections.Generic.IList hosts, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.RestartHostsWithHttpMessagesAsync(resourceGroupName, clusterName, hosts, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + /// + /// Gets the async operation status. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + public static AsyncOperationResult GetAsyncOperationStatus(this IVirtualMachinesOperations operations, string resourceGroupName, string clusterName, string operationId) + { + return ((IVirtualMachinesOperations)operations).GetAsyncOperationStatusAsync(resourceGroupName, clusterName, operationId).GetAwaiter().GetResult(); + } + + /// + /// Gets the async operation status. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The long running operation id. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task GetAsyncOperationStatusAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string clusterName, string operationId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + using (var _result = await operations.GetAsyncOperationStatusWithHttpMessagesAsync(resourceGroupName, clusterName, operationId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + public static void BeginRestartHosts(this IVirtualMachinesOperations operations, string resourceGroupName, string clusterName, System.Collections.Generic.IList hosts) + { + ((IVirtualMachinesOperations)operations).BeginRestartHostsAsync(resourceGroupName, clusterName, hosts).GetAwaiter().GetResult(); + } + + /// + /// Restarts the specified HDInsight cluster hosts. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the cluster. + /// + /// + /// The cancellation token. + /// + public static async System.Threading.Tasks.Task BeginRestartHostsAsync(this IVirtualMachinesOperations operations, string resourceGroupName, string clusterName, System.Collections.Generic.IList hosts, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) + { + (await operations.BeginRestartHostsWithHttpMessagesAsync(resourceGroupName, clusterName, hosts, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + } +} diff --git a/src/HDInsight/HDInsight.Management.Sdk/HDInsight.Management.Sdk.csproj b/src/HDInsight/HDInsight.Management.Sdk/HDInsight.Management.Sdk.csproj new file mode 100644 index 000000000000..062b84b192c4 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/HDInsight.Management.Sdk.csproj @@ -0,0 +1,18 @@ + + + + HDInsight + + + + + + netstandard2.0 + Microsoft.Azure.PowerShell.HDInsight.Management.Sdk + Microsoft.Azure.Management.HDInsight + $(NoWarn);CS0108;CS1573 + + + + + \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Management.Sdk/Properties/AssemblyInfo.cs b/src/HDInsight/HDInsight.Management.Sdk/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..06f84e0ba0b5 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/Properties/AssemblyInfo.cs @@ -0,0 +1,30 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using System; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("Microsoft Azure Powershell - HDInsight Management SDK")] +[assembly: AssemblyCompany(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCompany)] +[assembly: AssemblyProduct(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyProduct)] +[assembly: AssemblyCopyright(Microsoft.WindowsAzure.Commands.Common.AzurePowerShell.AssemblyCopyright)] + +[assembly: ComVisible(false)] +[assembly: CLSCompliant(false)] +[assembly: Guid("5470d6bc-50a5-4ae1-a5ba-1109ff68c826")] + +[assembly: AssemblyVersion("6.0.1")] +[assembly: AssemblyFileVersion("6.0.1")] diff --git a/src/HDInsight/HDInsight.Management.Sdk/README.md b/src/HDInsight/HDInsight.Management.Sdk/README.md new file mode 100644 index 000000000000..98c67fb0ea97 --- /dev/null +++ b/src/HDInsight/HDInsight.Management.Sdk/README.md @@ -0,0 +1,257 @@ +# Overall +This directory contains management plane service clients of Az.HDInsight module. + +## Run Generation +In this directory, run AutoRest: +``` +autorest --reset +autorest --use:@autorest/powershell@4.x +``` + +### AutoRest Configuration +> see https://aka.ms/autorest +``` yaml +isSdkGenerator: true +powershell: true +clear-output-folder: true +reflect-api-versions: true +openapi-type: arm +azure-arm: true +license-header: MICROSOFT_MIT_NO_VERSION +payload-flattening-threshold: 2 +``` + + + +### +``` yaml +commit: b36f75338bb933cbf23cc1daedc222f0d50855ca +input-file: + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/applications.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/cluster.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/configurations.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/extensions.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/locations.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/operations.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/privateEndpointConnections.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/privateLinkResources.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/scriptActions.json + - https://github.com/Azure/azure-rest-api-specs/blob/$(commit)/specification/hdinsight/resource-manager/Microsoft.HDInsight/preview/2023-08-15-preview/virtualMachines.json + +output-folder: Generated + +namespace: Microsoft.Azure.Management.HDInsight + +format-by-name-rules: + 'tenantId': 'uuid' + 'ETag': 'etag' + 'location': 'azure-location' + '*Uri': 'Uri' + '*Uris': 'Uri' + 'privateIPAddress': 'ip-address' + +rename-rules: + CPU: Cpu + CPUs: Cpus + Os: OS + Ip: IP + Ips: IPs|ips + ID: Id + IDs: Ids + VM: Vm + VMs: Vms + Vmos: VmOS + VMScaleSet: VmScaleSet + DNS: Dns + VPN: Vpn + NAT: Nat + WAN: Wan + Ipv4: IPv4|ipv4 + Ipv6: IPv6|ipv6 + Ipsec: IPsec|ipsec + SSO: Sso + URI: Uri + Etag: ETag|etag + RSA: Rsa + RSA15: Rsa15 + Autoscale: AutoScale + Mb: MB + +override-operation-name: + Locations_CheckNameAvailability: CheckHDInsightNameAvailability + Locations_ListBillingSpecs: GetHDInsightBillingSpecs + Locations_GetCapabilities: GetHDInsightCapabilities + Locations_ListUsages: GetHDInsightUsages + Locations_ValidateClusterCreateRequest: ValidateHDInsightClusterCreation + Clusters_GetAzureAsyncOperationStatus: GetAsyncOperationStatus + Extensions_GetAzureAsyncOperationStatus: GetExtensionAsyncOperationStatus + Extensions_EnableMonitoring: EnableClusterMonitoringExtension + Extensions_GetMonitoringStatus: GetClusterMonitoringExtensionStatus + Extensions_DisableMonitoring: DisableClusterMonitoringExtension + Extensions_EnableAzureMonitor: EnableAzureMonitorExtension + Extensions_GetAzureMonitorStatus: GetAzureMonitorExtensionStatus + Extensions_DisableAzureMonitor: DisableAzureMonitorExtension + ScriptActions_GetExecutionDetail: GetScriptActionExecutionDetail + ScriptActions_GetExecutionAsyncOperationStatus: GetScriptActionExecutionAsyncOperationStatus + VirtualMachines_ListHosts: GetVirtualMachineHosts + VirtualMachines_RestartHosts: RestartVirtualMachineHosts + VirtualMachines_GetAsyncOperationStatus: GetVirtualMachineAsyncOperationStatus + +rename-mapping: + StorageAccount.saskey: SasKey + Application: HDInsightApplication + Cluster: HDInsightCluster + NameAvailabilityCheckRequestParameters: HDInsightNameAvailabilityContent + NameAvailabilityCheckResult: HDInsightNameAvailabilityResult + ClusterCreateValidationResult: HDInsightClusterCreationValidateResult + ClusterCreateRequestValidationParameters: HDInsightClusterCreationValidateContent + AaddsResourceDetails: HDInsightClusterAaddsDetail + ValidationErrorInfo: HDInsightClusterValidationErrorInfo + AaddsResourceDetails.initialSyncComplete: IsInitialSyncComplete + AaddsResourceDetails.ldapsEnabled: IsLdapsEnabled + AaddsResourceDetails.resourceId: -|arm-id + AaddsResourceDetails.subnetId: -|arm-id + AsyncOperationResult: HDInsightAsyncOperationResult + AsyncOperationState: HDInsightAsyncOperationState + ApplicationProperties: HDInsightApplicationProperties + ApplicationGetEndpoint: HDInsightApplicationEndpoint + ApplicationGetHttpsEndpoint: HDInsightApplicationHttpsEndpoint + Role: HDInsightClusterRole + Autoscale: HDInsightAutoscaleConfiguration + AutoscaleCapacity: HDInsightAutoscaleCapacity + AutoscaleRecurrence: HDInsightAutoscaleRecurrence + AutoscaleSchedule: HDInsightAutoscaleSchedule + AutoscaleTimeAndCapacity: HDInsightAutoscaleTimeAndCapacity + AutoscaleConfigurationUpdateParameter: HDInsightAutoscaleConfigurationUpdateContent + BillingResponseListResult: HDInsightBillingSpecsListResult + CapabilitiesResult: HDInsightCapabilitiesResult + BillingMeters: HDInsightBillingMeters + BillingResources: HDInsightBillingResources + BillingResources.region: -|azure-location + ClusterConfigurations: HDInsightClusterConfigurations + ClusterCreateProperties: HDInsightClusterCreateOrUpdateProperties + ClusterGetProperties: HDInsightClusterProperties + ClusterDefinition: HDInsightClusterDefinition + ClusterDiskEncryptionParameters: HDInsightClusterDiskEncryptionContent + ClusterResizeParameters: HDInsightClusterResizeContent + DataDisksGroups: HDInsightClusterDataDiskGroup + DataDisksGroups.diskSizeGB: DiskSizeInGB + DiskBillingMeters: HDInsightDiskBillingMeters + Tier: HDInsightTier + AzureMonitorRequest: HDInsightAzureMonitorExtensionEnableContent + AzureMonitorResponse: HDInsightAzureMonitorExtensionStatus + AzureMonitorResponse.clusterMonitoringEnabled: IsClusterMonitoringEnabled + ClusterMonitoringRequest: HDInsightClusterEnableClusterMonitoringContent + ClusterMonitoringResponse: HDInsightClusterExtensionStatus + ClusterMonitoringResponse.clusterMonitoringEnabled: IsClusterMonitoringEnabled + Extension: HDInsightClusterCreateExtensionContent + AzureMonitorSelectedConfigurations: HDInsightAzureMonitorSelectedConfigurations + AzureMonitorTableConfiguration: HDInsightAzureMonitorTableConfiguration + SecurityProfile.msiResourceId: -|arm-id + StorageAccount: HDInsightStorageAccountInfo + StorageProfile.storageaccounts: StorageAccounts + StorageAccount.resourceId: -|arm-id + StorageAccount.msiResourceId: -|arm-id + ComputeIsolationProperties: HDInsightComputeIsolationProperties + DiskEncryptionProperties: HDInsightDiskEncryptionProperties + DiskEncryptionProperties.msiResourceId: -|arm-id + VirtualNetworkProfile: HDInsightVirtualNetworkProfile + VirtualNetworkProfile.id: -|arm-id + UpdateGatewaySettingsParameters: HDInsightClusterUpdateGatewaySettingsContent + UpdateClusterIdentityCertificateParameters: HDInsightClusterUpdateIdentityCertificateContent + PrivateLink: HDInsightPrivateLinkState + NetworkProperties: HDInsightClusterNetworkProperties + LinuxOperatingSystemProfile: HDInsightLinuxOSProfile + OsProfile.linuxOperatingSystemProfile: LinuxProfile + HostInfo: HDInsightClusterHostInfo + GatewaySettings: HDInsightClusterGatewaySettings + IPConfiguration.id: -|arm-id + IPConfiguration.type: -|resource-type + IPConfiguration.properties.primary: IsPrimary + NameAvailabilityCheckRequestParameters.type: -|resource-type + NameAvailabilityCheckResult.nameAvailable: IsNameAvailable + RuntimeScriptActionDetail.startTime: -|date-time + RuntimeScriptActionDetail.endTime: -|date-time + DaysOfWeek: HDInsightDayOfWeek + DiskEncryptionProperties.encryptionAtHost: IsEncryptionAtHostEnabled + DirectoryType: AuthenticationDirectoryType + ConnectivityEndpoint.location: EndpointLocation + ApplicationGetEndpoint.location: EndpointLocation + ApplicationGetHttpsEndpoint.location: EndpointLocation + SecurityProfile.aaddsResourceId: -|arm-id + PrivateLinkConfiguration.type: ResourceType|resource-type + RegionalQuotaCapability.regionName: region|azure-location + VmSizeProperty.supportedByVirtualMachines: IsSupportedByVirtualMachines + VmSizeProperty.supportedByWebWorkerRoles: IsSupportedByWebWorkerRoles + VmSizeCompatibilityFilterV2.computeIsolationSupported: IsComputeIsolationSupported + SecurityProfile.ldapsUrls: LdapUris|uri + ApplicationProperties.createdDate: CreatedOn|date-time + ClusterGetProperties.createdDate: CreatedOn|date-time + +prepend-rp-prefix: +- VmSizeCompatibilityFilterV2 +- VmSizeProperty +- FilterMode +- OSType +- SshPublicKey +- SecurityProfile +- VersionSpec +- VersionsCapability +- RoleName +- PrivateLinkConfiguration +- PrivateLinkConfigurationProvisioningState +- PrivateLinkServiceConnectionStatus +- PrivateIPAllocationMethod +- LocalizedName +- ResourceProviderConnection +- IPConfiguration + +directive: + - remove-operation: Locations_GetAzureAsyncOperationStatus # this operation is an LRO polling operation. Remove it here since our SDK provided LRO polling in a native way + - from: cluster.json + where: $.definitions + transform: > + $.Resource['x-ms-client-name'] = 'HDInsightClusterResponseData'; + $.GatewaySettings.properties['restAuthCredential.isEnabled']['type'] = 'boolean'; +# this model has an extra property which prevents the generator to replace it with the type provided by resourcemanager + - from: swagger-document + where: $.definitions.UserAssignedIdentity.properties + transform: $['tenantId'] = undefined +# mark it as input so that the getter of its properties will still preseve the setter + - from: swagger-document + where: $.definitions.Cluster + transform: $['x-csharp-usage'] = 'model,input,output' +# fix some attributes in Errors so that it could be replaced by Azure.ResponseError + - from: swagger-document + where: $.definitions.Errors.properties + transform: > + return { + 'code': { + 'readOnly': true, + 'type': 'string', + 'description': 'The error code.' + }, + 'message': { + 'readOnly': true, + 'type': 'string', + 'description': 'The error message.' + }, + 'target': { + 'readOnly': true, + 'type': 'string', + 'description': 'The error target.' + }, + 'details': { + 'readOnly': true, + 'type': 'array', + 'items': { + '$ref': '#/definitions/Errors' + }, + 'x-ms-identifiers': [ + 'message', + 'target' + ], + 'description': 'The error details.' + } + }; +``` \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Test/Constants.cs b/src/HDInsight/HDInsight.Test/Constants.cs new file mode 100644 index 000000000000..f16a0c01b191 --- /dev/null +++ b/src/HDInsight/HDInsight.Test/Constants.cs @@ -0,0 +1,280 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.HDInsight +{ + internal static class Constants + { + public const string Hadoop = "Hadoop"; + + public static class CommandNames + { + public const string AzureHDInsightCluster = "AzureRmHDInsightCluster"; + public const string AzureHDInsightClusterConfig = "AzureRmHDInsightClusterConfig"; + public const string AzureHDInsightClusterSize = "AzureRmHDInsightClusterSize"; + public const string AzureHDInsightHttpServicesAccess = "AzureRmHDInsightHttpServicesAccess"; + public const string AzureHDInsightConfigValues = "AzureRmHDInsightConfigValues"; + public const string AzureHDInsightMetastore = "AzureRmHDInsightMetastore"; + public const string AzureHDInsightScriptAction = "AzureRmHDInsightScriptAction"; + public const string AzureHDInsightScriptActionHistory = "AzureRmHDInsightScriptActionHistory"; + public const string AzureHDInsightSecurityProfile = "AzureRmHDInsightSecurityProfile"; + public const string AzureHDInsightPersistedScriptAction = "AzureRmHDInsightPersistedScriptAction"; + public const string AzureHDInsightStorage = "AzureRmHDInsightStorage"; + public const string AzureHDInsightProperties = "AzureRmHDInsightProperties"; + public const string AzureHDInsightJob = "AzureRmHDInsightJob"; + public const string AzureHDInsightJobOutput = "AzureRmHDInsightJobOutput"; + public const string AzureHDInsightDefaultStorage = "AzureRmHDInsightDefaultStorage"; + public const string AzureHDInsightHiveJob = "AzureRmHDInsightHiveJob"; + public const string AzureHDInsightClusterIdentity = "AzureRmHDInsightClusterIdentity"; + public const string AzureHDInsightComponentVersion = "AzureRmHDInsightComponentVersion"; + public const string AzureHDInsightMonitoring = "AzureRmHDInsightMonitoring"; + public const string Hive = "Hive"; + } + + public static class JobDefinitions + { + public const string AzureHDInsightHiveJobDefinition = "AzureRmHDInsightHiveJobDefinition"; + public const string AzureHDInsightPigJobDefinition = "AzureRmHDInsightPigJobDefinition"; + public const string AzureHDInsightMapReduceJobDefinition = "AzureRmHDInsightMapReduceJobDefinition"; + public const string AzureHDInsightStreamingMapReduceJobDefinition = "AzureRmHDInsightStreamingMapReduceJobDefinition"; + public const string AzureHDInsightSqoopJobDefinition = "AzureRmHDInsightSqoopJobDefinition"; + } + + public static class ClusterConfiguration + { + public const string DefaultStorageAccountNameKey = "fs.defaultFS"; + public const string DefaultStorageAccountNameKeyOld = "fs.default.name"; + public const string StorageAccountKeyPrefix = "fs.azure.account.key."; + } + + public static class GatewayConfigurations + { + public const string CredentialIsEnabledKey = "restAuthCredential.isEnabled"; + public const string UserNameKey = "restAuthCredential.username"; + public const string PasswordKey = "restAuthCredential.password"; + } + + public static class StorageConfigurations + { + public const string BlobStorageSuffixValueFormat = ".blob.{0}"; + public const string Adlsgen2StorageSuffixValueFormat = ".dfs.{0}"; + public const string DefaultFsKey = "fs.defaultFS"; + public const string WasbStorageAccountKeyFormat = "fs.azure.account.key.{0}"; + public const string AdlHostNameKey = "dfs.adls.home.hostname"; + public const string AdlMountPointKey = "dfs.adls.home.mountpoint"; + + public const string DefaultFsWasbValueFormat = "wasb://{0}@{1}"; + public const string DefaultFsAdlValue = "adl://home"; + } + + public static class DataLakeConfigurations + { + public const string ApplicationIdKey = "clusterIdentity.applicationId"; + public const string TenantIdKey = "clusterIdentity.aadTenantId"; + public const string CertificateKey = "clusterIdentity.certificate"; + public const string CertificatePasswordKey = "clusterIdentity.certificatePassword"; + public const string ResourceUriKey = "clusterIdentity.resourceUri"; + } + + public static class MetastoreConfigurations + { + public const string ConnectionUrlFormat = + "jdbc:sqlserver://{0};database={1};encrypt=true;trustServerCertificate=true;create=false;loginTimeout=300;sendStringParametersAsUnicode=true;prepareSQL=0"; + + public const string DatabaseValue = "Existing MSSQL Server database with SQL authentication"; + public const string DatabaseTypeValue = "mssql"; + + public static class HiveSite + { + public const string ConnectionUrlKey = "javax.jdo.option.ConnectionURL"; + public const string ConnectionUserNameKey = "javax.jdo.option.ConnectionUserName"; + public const string ConnectionPasswordKey = "javax.jdo.option.ConnectionPassword"; + public const string ConnectionDriverNameKey = "javax.jdo.option.ConnectionDriverName"; + + public const string ConnectionDriverNameValue = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; + } + + public static class HiveEnv + { + public const string DatabaseKey = "hive_database"; + public const string DatabaseNameKey = "hive_database_name"; + public const string DatabaseTypeKey = "hive_database_type"; + public const string ExistingDatabaseKey = "hive_existing_mssql_server_database"; + public const string ExistingHostKey = "hive_existing_mssql_server_host"; + public const string HostNameKey = "hive_hostname"; + } + + public static class OozieSite + { + public const string UrlKey = "oozie.service.JPAService.jdbc.url"; + public const string UserNameKey = "oozie.service.JPAService.jdbc.username"; + public const string PasswordKey = "oozie.service.JPAService.jdbc.password"; + public const string DriverKey = "oozie.service.JPAService.jdbc.driver"; + public const string SchemaKey = "oozie.db.schema.name"; + + public const string DriverValue = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; + public const string SchemaValue = "oozie"; + } + + public static class OozieEnv + { + public const string DatabaseKey = "oozie_database"; + public const string DatabaseNameKey = "oozie_database_name"; + public const string DatabaseTypeKey = "oozie_database_type"; + public const string ExistingDatabaseKey = "oozie_existing_mssql_server_database"; + public const string ExistingHostKey = "oozie_existing_mssql_server_host"; + public const string HostNameKey = "oozie_hostname"; + } + } + + public static class Errors + { + public static string ERROR_INPUT_CANNOT_BE_EMPTY = "Input cannot be empty"; + public static string ERROR_SCHEME_SPECIFIED_IN_STORAGE_FQDN = "Please specify fully qualified storage endpoint without the scheme"; + } + + public static class ConfigurationKey + { + /// + /// The constant for Core site configs. + /// + public const string CoreSite = "core-site"; + + /// + /// The constant for Hive site configs. + /// + public const string HiveSite = "hive-site"; + + /// + /// The constant for hive environment configs. + /// + public const string HiveEnv = "hive-env"; + + /// + /// The constant for Oozie site configs. + /// + public const string OozieSite = "oozie-site"; + + /// + /// The constant for Oozie environment configs. + /// + public const string OozieEnv = "oozie-env"; + + /// + /// The constant for WebHCAT site configs. + /// + public const string WebHCatSite = "webhcat-site"; + + /// + /// The constant for HBase environment configs. + /// + public const string HBaseEnv = "hbase-env"; + + /// + /// The constant for HBase site configs. + /// + public const string HBaseSite = "hbase-site"; + + /// + /// The constant for Storm site configs. + /// + public const string StormSite = "storm-site"; + + /// + /// The constant for Yarn site configs. + /// + public const string YarnSite = "yarn-site"; + + /// + /// The constant for MapRed site configs. + /// + public const string MapRedSite = "mapred-site"; + + /// + /// The constant for Tez site configs. + /// + public const string TezSite = "tez-site"; + + /// + /// The constant for HDFS site configs. + /// + public const string HdfsSite = "hdfs-site"; + + /// + /// The constant for Gateway configs. + /// + public const string Gateway = "gateway"; + + /// + /// The constant for cluster identity configs. + /// + public const string ClusterIdentity = "clusterIdentity"; + + /// + /// The constant for Spark-Defaults configs. + /// + public const string SparkDefaults = "spark-defaults"; + + /// + /// The constant for Spark-Thrift-SparkConf configs. + /// + public const string SparkThriftConf = "spark-thrift-sparkconf"; + + /// + /// The constant for Spark2-Defaults configs. + /// + public const string Spark2Defaults = "spark2-defaults"; + + /// + /// The constant for Spark2-Thrift-SparkConf configs. + /// + public const string Spark2ThriftConf = "spark2-thrift-sparkconf"; + + /// + /// The constant for custom ambari db configs. + /// + public const string AmbariConf = "ambari-conf"; + } + + public static class AmbariConfiguration + { + public const string SqlServerKey = "database-server"; + public const string DatabaseNameKey = "database-name"; + public const string DatabaseUserKey = "database-user-name"; + public const string DatabasePasswordKey = "database-user-password"; + } + + public static class ClusterRoleType + { + public const string HeadNodeRole = "HEADNODEROLE"; + public const string WorkerNodeRole = "WORKERNODEROLE"; + public const string ZookeeperNodeRole = "ZOOKEEPERROLE"; + public const string EdgeNodeRole = "EDGENODEROLE"; + public const string KafkaManagementNodeRole = "KAFKAMANAGEMENTNODEROLE"; + public const string HIBNodeRole = "HIBROLE"; + public const string AllRole = "*"; + } + + public static class ClusterType + { + public const string Hadoop = "HADOOP"; + public const string Spark = "SPARK"; + public const string Kafka = "KAFKA"; + public const string Storm = "STORM"; + public const string MLService = "MLSERVICE"; + public const string LLAP = "LLAP"; + public const string InterActiveHive = "INTERACTIVEHIVE"; + public const string AllClusterType = "*"; + } + } +} diff --git a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj index 776fddac7c94..6bb6d899537f 100644 --- a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj +++ b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj @@ -1,4 +1,4 @@ - + HDInsight @@ -11,8 +11,8 @@ + - @@ -22,9 +22,9 @@ - + - + \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Test/HDInsightTestBase.cs b/src/HDInsight/HDInsight.Test/HDInsightTestBase.cs index bffb91deb0dc..c6b9e9f526f5 100644 --- a/src/HDInsight/HDInsight.Test/HDInsightTestBase.cs +++ b/src/HDInsight/HDInsight.Test/HDInsightTestBase.cs @@ -16,12 +16,16 @@ using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Factories; using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; using Moq; using System; using System.Collections.Generic; using System.Management.Automation; +using Azure.ResourceManager.HDInsight; +using System.Linq; +using Azure.Core; +using Microsoft.Azure.Management.OperationalInsights.Models; namespace Microsoft.Azure.Commands.HDInsight.Test { @@ -29,10 +33,10 @@ public class HDInsightTestBase : RMTestBase { protected const string ClusterName = "hdicluster"; protected const string ResourceGroupName = "hdi-rg1"; - protected const string Location = "west us"; + protected const string Location = "westus"; - protected string ClusterType = "Hadoop"; - protected string HdiVersion = "3.1"; + protected string ClusterType = "Spark"; + protected string HdiVersion = "4.0"; protected Mock hdinsightManagementMock; protected Mock hdinsightJobManagementMock; @@ -58,27 +62,17 @@ public virtual void SetupTestsForData() public virtual void SetupManagementClientForJobTests() { // Update HDInsight Management properties for Job. - var cluster1 = new Cluster( - id: $"/subscriptions/{Guid.NewGuid()}/resourceGroups/{ResourceGroupName}/providers/Microsoft.HDInsight/clusters/{ClusterName}", - name: ClusterName, location: Location) + var cluster1 = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier($"/subscriptions/{Guid.NewGuid()}/resourceGroups/{ResourceGroupName}/providers/Microsoft.HDInsight/clusters/{ClusterName}"), name: ClusterName, location: Location); + cluster1.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()) { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux", - ConnectivityEndpoints = new List { new ConnectivityEndpoint { Location = ClusterName, Name = "HTTPS" } } - } + ClusterVersion = "3.6", + ClusterState = "Running" }; + cluster1.Properties.ClusterDefinition.Kind = ClusterType; + cluster1.Properties.QuotaInfoCoresUsed = 24; + cluster1.Properties.OSType = "Linux"; + cluster1.Properties.ConnectivityEndpoints.Add(new ConnectivityEndpoint() { EndpointLocation = ClusterName, Name = "HTTPS"}); + var listresponse = new[] { cluster1 }; hdinsightManagementMock.Setup(c => c.ListClusters()) @@ -86,7 +80,7 @@ public virtual void SetupManagementClientForJobTests() .Verifiable(); hdinsightManagementMock.Setup(c => c.GetCluster(It.IsAny(), It.IsAny())) - .Returns(new List { cluster1 }) + .Returns(new List { cluster1 }) .Verifiable(); var configurationResponse = new Dictionary(); @@ -97,15 +91,13 @@ public virtual void SetupManagementClientForJobTests() .Returns(configurationResponse) .Verifiable(); - var listConfigurationsResponse = new ClusterConfigurations - { - Configurations = new Dictionary> + var listConfigurationsResponse = ArmHDInsightModelFactory.HDInsightClusterConfigurations(new Dictionary> { { "core-site", configurationResponse } - } - }; + }); + hdinsightManagementMock.Setup(c => c.ListConfigurations(It.IsAny(), It.IsAny())) .Returns(listConfigurationsResponse) diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/Common.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/Common.ps1 index 68cd9d18f99a..ab2d656f8d56 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/Common.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/Common.ps1 @@ -105,10 +105,11 @@ class ClusterCommonCreateParameter{ function Prepare-ClusterCreateParameter{ param( [string] $clusterName="hdi-ps-test", - [string] $location="East US", + [string] $location="Japan East", [string] $resourceGroupName="group-ps-test", [string] $storageAccountName="storagepstest", - [string] $clusterType="Spark" + [string] $clusterType="Spark", + [string] $version = "4.0" ) $clusterName=Generate-Name($clusterName) diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAutoscaleTests.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAutoscaleTests.cs index 3100b53bc9eb..0df4c6ebd863 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAutoscaleTests.cs +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAutoscaleTests.cs @@ -14,8 +14,14 @@ using Microsoft.Azure.Commands.HDInsight.Test.ScenarioTests; using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System.Collections.Generic; +using System; using Xunit; using Xunit.Abstractions; +using Azure.Core; +using Newtonsoft.Json; +using Microsoft.Azure.Commands.HDInsight.Models; +using Microsoft.Azure.Commands.HDInsight.Commands; namespace Commands.HDInsight.Test.ScenarioTests { @@ -25,7 +31,7 @@ public HDInsightAutoscaleTests(ITestOutputHelper output) : base(output) { } - [Fact] + [Fact(Skip = "need to create resource manually")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestAutoscaleRelatedCommands() { diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.cs index e99001ff3ddf..7910330a631a 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.cs +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightAzureMonitorTests.cs @@ -25,8 +25,7 @@ public HDInsightAzureMonitorTests(ITestOutputHelper output) : base(output) { } - //[Fact(Skip = "test case cannot be re-recorded properly, need help from service team")] - [Fact] + [Fact(Skip = "test case cannot be re-recorded properly, need help from service team")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestAzureMonitorRelatedCommands() { diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.cs index 4b2bce1a1b0d..9b8b0f430e47 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.cs +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.cs @@ -25,13 +25,20 @@ public HDInsightClusterTests(ITestOutputHelper output) : base(output) { } - [Fact] + [Fact(Skip = "need to create resource manually")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestClusterRelatedCommands() { TestRunner.RunTestScript("Test-ClusterRelatedCommands"); } + [Fact(Skip = "need to create resource manually")] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestClusterEnableSecureChannelCommands() + { + TestRunner.RunTestScript("Test-ClusterEnableSecureChannelCommands"); + } + [Fact(Skip = "Sikp this")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCmkClusterRelatedCommands() @@ -60,21 +67,21 @@ public void TestCreateClusterWithLoadBasedAutoscale() TestRunner.RunTestScript("Test-CreateClusterWithLoadBasedAutoscale"); } - [Fact] + [Fact(Skip = "need to create resource manually")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCreateClusterWithScheduleBasedAutoscale() { TestRunner.RunTestScript("Test-CreateClusterWithScheduleBasedAutoscale"); } - [Fact] + [Fact(Skip = "need to create resource manually")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCreateClusterWithKafkaRestProxy() { TestRunner.RunTestScript("Test-CreateClusterWithKafkaRestProxy"); } - [Fact(Skip ="need to create resource manually")] + [Fact(Skip = "need to create resource manually")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestCreateClusterWithRelayOutoundAndPrivateLink() { diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.ps1 index 48c751874068..d5fd6e2da812 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightClusterTests.ps1 @@ -29,7 +29,7 @@ function Test-ClusterRelatedCommands{ $cluster = New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName ` -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` -StorageAccountResourceId $params.storageAccountResourceId -StorageAccountKey $params.storageAccountKey ` - -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential -Version $params.version ` -MinSupportedTlsVersion $params.minSupportedTlsVersion Assert-NotNull $cluster @@ -40,8 +40,8 @@ function Test-ClusterRelatedCommands{ #test Set-AzHDInsightClusterSize $resizeCluster = Set-AzHDInsightClusterSize -ClusterName $cluster.Name -ResourceGroupName $cluster.ResourceGroup ` - -TargetInstanceCount 3 - Assert-AreEqual $resizeCluster.CoresUsed 40 + -TargetInstanceCount 4 + Assert-AreEqual $resizeCluster.CoresUsed 48 } finally { @@ -51,6 +51,37 @@ function Test-ClusterRelatedCommands{ } } +<# +.SYNOPSIS +Test Create Enable Secure Channel HDInsight Cluster +#> + +function Test-ClusterEnableSecureChannelCommands{ + + # Create some resources that will be used throughout test + try + { + # prepare parameter for creating parameter + $params= Prepare-ClusterCreateParameter + $enableSecureChannel = $true + + # test create cluster + $cluster = New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName ` + -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` + -StorageAccountResourceId $params.storageAccountResourceId -StorageAccountKey $params.storageAccountKey ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential -Version $params.version ` + -MinSupportedTlsVersion $params.minSupportedTlsVersion -EnableSecureChannel $enableSecureChannel + + Assert-NotNull $cluster + Assert-AreEqual $cluster.EnableSecureChannel $enableSecureChannel + } + finally + { + # Delete cluster and resource group + Remove-AzHDInsightCluster -ClusterName $cluster.Name + Remove-AzResourceGroup -ResourceGroupName $cluster.ResourceGroup + } +} <# .SYNOPSIS @@ -150,7 +181,7 @@ function Test-CreateClusterWithEncryptionAtHost{ -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` -MinSupportedTlsVersion $params.minSupportedTlsVersion -EncryptionAtHost $encryptionAtHost - Assert-AreEqual $cluster.DiskEncryption.EncryptionAtHost $encryptionAtHost + Assert-AreEqual $cluster.DiskEncryption.IsEncryptionAtHostEnabled $encryptionAtHost } finally @@ -172,7 +203,7 @@ function Test-CreateClusterWithLoadBasedAutoscale{ try { # prepare parameter for creating parameter - $params= Prepare-ClusterCreateParameter -location "East US" + $params= Prepare-ClusterCreateParameter -location "South Central US" # create autoscale cofiguration $autoscaleConfiguration=New-AzHDInsightClusterAutoscaleConfiguration -MinWorkerNodeCount 4 -MaxWorkerNodeCount 5 @@ -287,10 +318,10 @@ function Test-CreateClusterWithRelayOutoundAndPrivateLink{ try { # prepare parameter for creating parameter - $params= Prepare-ClusterCreateParameter -location "South Central US" + $params= Prepare-ClusterCreateParameter # Private Link requires vnet has firewall, this is difficult to create dynamically, just hardcode here - $vnetId= "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet"#"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet" + $vnetId="/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/{resourcegroup}/providers/Microsoft.Network/virtualNetworks/testPSVN" $subnetName="default" # create cluster @@ -325,7 +356,7 @@ function Test-CreateClusterWithCustomAmbariDatabase{ try { # prepare parameter for creating parameter - $params= Prepare-ClusterCreateParameter -location "South Central US" + $params= Prepare-ClusterCreateParameter # prepare custom ambari database $databaseUserName="yourusername" @@ -334,7 +365,7 @@ function Test-CreateClusterWithCustomAmbariDatabase{ $sqlserverCredential=New-Object System.Management.Automation.PSCredential($databaseUserName, $databasePassword) $sqlserver="yoursqlserver.database.windows.net" - $database="customambaridb" + $database="Ambari" $config=New-AzHDInsightClusterConfig|Add-AzHDInsightMetastore ` -SqlAzureServerName $sqlserver -DatabaseName $database ` @@ -369,7 +400,7 @@ function Test-CreateClusterWithComputeIsolation{ try { # prepare parameter for creating parameter - $params= Prepare-ClusterCreateParameter -location "South Central US" + $params= Prepare-ClusterCreateParameter $encryptionAtHost=$true $workerNodeSize="Standard_E8S_v3" $headNodeSize="Standard_E16S_v3" @@ -405,7 +436,7 @@ function Test-CreateClusterWithAvailabilityZones{ try { # prepare parameter for creating parameter - $params= Prepare-ClusterCreateParameter -location "South Central US" + $params= Prepare-ClusterCreateParameter -location "East US" # prepare custom ambari database $databaseUserName="yourusername" @@ -465,9 +496,17 @@ function Test-CreateClusterWithPrivateLinkConfiguration{ { # prepare parameter for creating parameter $params= Prepare-ClusterCreateParameter -location "South Central US" + $httpUser="admin" + $textPassword= "YourPw!00953" + $httpPassword=ConvertTo-SecureString $textPassword -AsPlainText -Force + $sshUser="sshuser" + $sshPassword=$httpPassword + $httpCredential=New-Object System.Management.Automation.PSCredential($httpUser, $httpPassword) + $sshCredential=New-Object System.Management.Automation.PSCredential($sshUser, $sshPassword) + $storageContainer="testpspl" # Private Link requires vnet has firewall, this is difficult to create dynamically, just hardcode here - $vnetId= "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet"#"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet" + $vnetId="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet" $subnetName="default" $ipConfigName="ipconfig" @@ -485,9 +524,10 @@ function Test-CreateClusterWithPrivateLinkConfiguration{ $cluster = New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.resourceGroupName ` -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` -StorageAccountResourceId $params.storageAccountResourceId -StorageAccountKey $params.storageAccountKey ` - -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -SshCredential $sshCredential ` + -HttpCredential $httpCredential ` -MinSupportedTlsVersion $params.minSupportedTlsVersion ` - -VirtualNetworkId $vnetId -SubnetName $subnetName -Version 3.6 ` + -VirtualNetworkId $vnetId -SubnetName $subnetName -Version 4.0 ` -ResourceProviderConnection Outbound -PrivateLink Enabled -PrivateLinkConfiguration $privateLinkConfiguration Assert-AreEqual $cluster.NetworkProperties.ResourceProviderConnection Outbound diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightConfigurationTests.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightConfigurationTests.ps1 index dde257961b8f..6a72b541da50 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightConfigurationTests.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightConfigurationTests.ps1 @@ -34,13 +34,13 @@ $coreconfig = New-Object "System.Collections.Generic.Dictionary``2[System.String,System.String]" $coreconfig.Add('coreconfig', 'corevalue') Assert-Null $config.Configurations["core-site"] - $config = $config | Add-AzHDInsightConfigValues -Core $coreconfig + $config = $config | Add-AzHDInsightConfigValue -Core $coreconfig Assert-NotNull $config.Configurations["core-site"] $oozieconfig = New-Object "System.Collections.Generic.Dictionary``2[System.String,System.String]" $oozieconfig.Add('oozieconfig', 'oozievalue') Assert-Null $config.Configurations["oozie-site"] - $config = $config | Add-AzHDInsightConfigValues -OozieSite $coreconfig + $config = $config | Add-AzHDInsightConfigValue -OozieSite $coreconfig Assert-NotNull $config.Configurations["oozie-site"] #test Add-AzHDInsightMetastore @@ -65,9 +65,10 @@ #test Set-AzHDInsightDefaultStorage Assert-Null $config.DefaultStorageAccountName Assert-Null $config.DefaultStorageAccountKey - $config = $config | Set-AzHDInsightDefaultStorage -StorageAccountName fakedefaultaccount -StorageAccountKey DEFAULTACCOUNTKEY== - Assert-NotNull $config.DefaultStorageAccountName - Assert-NotNull $config.DefaultStorageAccountKey + $config = $config | Set-AzHDInsightDefaultStorage -StorageAccountResourceId fakedefaultResourceId -StorageAccountKey DEFAULTACCOUNTKEY== -StorageAccountType AzureStorage + Assert-NotNull $config.StorageAccountResourceId + Assert-NotNull $config.StorageAccountKey + Assert-NotNull $config.StorageAccountType #test Add-AzHDInsightComponentVersion $componentName="Spark" @@ -93,7 +94,7 @@ $organizationalUnitDN = "ou=testunitdn" $ldapsUrls = ("ldaps://sampledomain.onmicrosoft.com:636","ldaps://sampledomain.onmicrosoft.com:389") $clusterUsersGroupDNs = ("groupdn1","groupdn2") - $config = $config | Add-AzHDInsightSecurityProfile -Domain $domain -DomainUserCredential $domainUserCredential -OrganizationalUnitDN $organizationalUnitDN -LdapsUrls $ldapsUrls -ClusterUsersGroupDNs $clusterUsersGroupDNs - Assert-AreEqual $config.SecurityProfile.Domain $domain + $config = $config | Add-AzHDInsightSecurityProfile -DomainResourceId $domain -DomainUserCredential $domainUserCredential -OrganizationalUnitDN $organizationalUnitDN -LdapsUrls $ldapsUrls -ClusterUsersGroupDNs $clusterUsersGroupDNs + Assert-AreEqual $config.SecurityProfile.DomainResourceId $domain Assert-NotNull $config.SecurityProfile.LdapsUrls } \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.cs index a6f4cda40f9f..47e5e0acbe57 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.cs +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.cs @@ -25,7 +25,7 @@ public HDInsightHostTests(ITestOutputHelper output) : base(output) { } - [Fact] + [Fact(Skip = "need to create resource manually")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestHostRelatedCommands() { diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightMonitoringTests.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightMonitoringTests.ps1 index 2a729238bca2..3c3b70f03907 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightMonitoringTests.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightMonitoringTests.ps1 @@ -21,9 +21,14 @@ function Test-MonitoringRelatedCommands{ # Create some resources that will be used throughout test try { - $location = "West US 2" + $location = "South Central US" + $params= Prepare-ClusterCreateParameter -location $location -clusterType Spark # create cluster that will be used throughout test - $cluster = Create-Cluster -Location $location + $cluster = New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.ResourceGroupName ` + -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` + -StorageAccountResourceId $params.storageAccountResourceId -StorageAccountKey $params.storageAccountKey ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -MinSupportedTlsVersion $params.minSupportedTlsVersion $workspaceName = Generate-Name("workspace-ps-test") $resourceGroupName = $cluster.ResourceGroup diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightScriptActionTests.ps1 b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightScriptActionTests.ps1 index 1f115f67ecc7..39719308729f 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightScriptActionTests.ps1 +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightScriptActionTests.ps1 @@ -22,8 +22,15 @@ function Test-ScriptActionRelatedCommands{ # Create some resources that will be used throughout test try { - # create cluster that will be used throughout test - $cluster = Create-Cluster + # prepare parameter for creating parameter + $params= Prepare-ClusterCreateParameter + + # test create cluster + $cluster = New-AzHDInsightCluster -Location $params.location -ResourceGroupName $params.ResourceGroupName ` + -ClusterName $params.clusterName -ClusterSizeInNodes $params.clusterSizeInNodes -ClusterType $params.clusterType ` + -StorageAccountResourceId $params.storageAccountResourceId -StorageAccountKey $params.storageAccountKey ` + -HttpCredential $params.httpCredential -SshCredential $params.sshCredential ` + -MinSupportedTlsVersion $params.minSupportedTlsVersion $scriptActionName = Generate-Name("scriptaction") $uri = "https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh" diff --git a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightSetGatewayCredentialTest.cs b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightSetGatewayCredentialTest.cs index 97b7f39c47f7..5a477f98fc2a 100644 --- a/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightSetGatewayCredentialTest.cs +++ b/src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightSetGatewayCredentialTest.cs @@ -25,7 +25,7 @@ public HDInsightSetGatewayCredentialTest(ITestOutputHelper output) : base(output { } - [Fact] + [Fact(Skip = "need to create resource manually")] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestSetGatewayCredential() { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAutoscaleTests/TestAutoscaleRelatedCommands.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAutoscaleTests/TestAutoscaleRelatedCommands.json index c9d1e4b34172..d319da1d8dd0 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAutoscaleTests/TestAutoscaleRelatedCommands.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAutoscaleTests/TestAutoscaleRelatedCommands.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4432?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8555?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTU1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "0c68a39f-8435-4c3e-a28f-4e92107e43f0" + "a6ac375b-4bf3-4d47-bbcc-8df7d6a1b187" ], "Accept-Language": [ "en-US" @@ -14,17 +14,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "32" ] }, - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "2e600431-906a-43a1-92d8-679153368bef" + "0bf96ea0-117b-4465-adb3-e02dcc964367" ], "x-ms-correlation-request-id": [ - "2e600431-906a-43a1-92d8-679153368bef" + "0bf96ea0-117b-4465-adb3-e02dcc964367" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T071505Z:2e600431-906a-43a1-92d8-679153368bef" + "KOREACENTRAL:20230721T091028Z:0bf96ea0-117b-4465-adb3-e02dcc964367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 07:15:05 GMT" + "Fri, 21 Jul 2023 09:10:28 GMT" ], "Content-Length": [ - "187" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,16 +63,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432\",\r\n \"name\": \"group-ps-test4432\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8555\",\r\n \"name\": \"group-ps-test8555\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDE3NjE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8555/providers/Microsoft.Storage/storageAccounts/storagepstest8574?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDg1NzQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "ba6b4133-6787-4bfb-b0e0-58022947d9d1" + "a254097b-50b9-4a9b-9695-ac514e6861fb" ], "Accept-Language": [ "en-US" @@ -80,17 +80,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "101" + "104" ] }, - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/96bf444c-b419-4740-a2b6-e98c47cd7580?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a4425ff9-dcc2-4764-9108-399ec50c521c?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "96bf444c-b419-4740-a2b6-e98c47cd7580" + "a4425ff9-dcc2-4764-9108-399ec50c521c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "997914c0-36af-4aa8-8a35-e06ed72d7887" + "2aabf7e5-c7eb-438d-8287-addbb3f45d82" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T071510Z:997914c0-36af-4aa8-8a35-e06ed72d7887" + "KOREACENTRAL:20230721T091034Z:2aabf7e5-c7eb-438d-8287-addbb3f45d82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 07:15:10 GMT" + "Fri, 21 Jul 2023 09:10:33 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,15 +142,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/96bf444c-b419-4740-a2b6-e98c47cd7580?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy85NmJmNDQ0Yy1iNDE5LTQ3NDAtYTJiNi1lOThjNDdjZDc1ODA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a4425ff9-dcc2-4764-9108-399ec50c521c?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9hNDQyNWZmOS1kY2MyLTQ3NjQtOTEwOC0zOTllYzUwYzUyMWM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -161,8 +161,14 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a4425ff9-dcc2-4764-9108-399ec50c521c?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" + ], "x-ms-request-id": [ - "4f33b9c8-104e-4e7e-a30e-a087b40694f2" + "653c485a-a372-4ff4-98a5-ef109c012ea5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,46 +180,40 @@ "11999" ], "x-ms-correlation-request-id": [ - "9667edde-77db-453e-9a2e-7cd76168238c" + "3aa384d3-2530-4a6b-8589-8264b213b09c" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T071527Z:9667edde-77db-453e-9a2e-7cd76168238c" + "KOREACENTRAL:20230721T091051Z:3aa384d3-2530-4a6b-8589-8264b213b09c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 07:15:27 GMT" - ], - "Content-Length": [ - "1384" + "Fri, 21 Jul 2023 09:10:51 GMT" ], "Content-Type": [ - "application/json" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"name\": \"storagepstest1761\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T07:15:08.1653764Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T07:15:08.1653764Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-04-06T07:15:07.8372345Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest1761.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest1761.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest1761.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest1761.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest1761-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest1761-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest1761-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDE3NjEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a4425ff9-dcc2-4764-9108-399ec50c521c?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9hNDQyNWZmOS1kY2MyLTQ3NjQtOTEwOC0zOTllYzUwYzUyMWM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "003a6258-853b-4192-8b9b-e2741292b854" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "d1311af7-d7e4-425a-ae0b-07180725e3ce" + "81a0e6a1-c1d2-4a84-ae81-40e76674ec38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,23 +233,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "82f917cc-1a36-40ad-a069-71728f217ffd" + "25d32f25-7124-4a71-83e5-0b72d5878aab" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T071528Z:82f917cc-1a36-40ad-a069-71728f217ffd" + "KOREACENTRAL:20230721T091054Z:25d32f25-7124-4a71-83e5-0b72d5878aab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 07:15:27 GMT" + "Fri, 21 Jul 2023 09:10:54 GMT" ], "Content-Length": [ - "288" + "1393" ], "Content-Type": [ "application/json" @@ -258,82 +258,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"se2RVHp2UannpbTgYsj8P3Kz16DKjfwAWW+oEaWrcHSsbvbbjNY27yACXJAc2BSblHZLWkIh0rqR+AStXQSKLQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"/z9hJNSWeIRhl1Y6IABnfwtepeGxy1K9ZAY+Yo4MKEXFTvtyI95XkeGFR5UoSZGqZo1JRcC9ztWw+ASty0IXiA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3240b7ef-8c3a-4f49-9376-9b641de6f85b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "2b200c2d-cf3d-44b0-a778-e085cf36594a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071529Z:2b200c2d-cf3d-44b0-a778-e085cf36594a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:15:29 GMT" - ], - "Content-Length": [ - "105467" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D15_v2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E48A_V4\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_F1\",\r\n \"STANDARD_F16\",\r\n \"STANDARD_F2\",\r\n \"STANDARD_F4\",\r\n \"STANDARD_F8\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E48a_v4\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"4.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D15_V2\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D15_v2 (20 cores, 143360 MB)\",\r\n \"maxDataDiskCount\": 40,\r\n \"memoryInMb\": 143360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1024000,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E48a_v4 (48 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_F1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F1 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 16384,\r\n \"webWorkerResourceDiskSizeInMb\": 16384\r\n },\r\n {\r\n \"name\": \"STANDARD_F16\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F16 (16 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 262144,\r\n \"webWorkerResourceDiskSizeInMb\": 262144\r\n },\r\n {\r\n \"name\": \"STANDARD_F2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 32768,\r\n \"webWorkerResourceDiskSizeInMb\": 32768\r\n },\r\n {\r\n \"name\": \"STANDARD_F4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F4 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 65536,\r\n \"webWorkerResourceDiskSizeInMb\": 65536\r\n },\r\n {\r\n \"name\": \"STANDARD_F8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F8 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 131072,\r\n \"webWorkerResourceDiskSizeInMb\": 131072\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"East US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8555/providers/Microsoft.Storage/storageAccounts/storagepstest8574\",\r\n \"name\": \"storagepstest8574\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-21T09:10:29.916304Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-21T09:10:29.916304Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-21T09:10:29.7913044Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8574.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8574.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8574.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest8574.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8574-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8574-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8574-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8555/providers/Microsoft.Storage/storageAccounts/storagepstest8574/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDg1NzQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" + "b96b7820-39d9-4003-bd5e-0524025704d7" ], "Accept-Language": [ "en-US" @@ -341,86 +275,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2142" - ] - }, - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"key\": \"se2RVHp2UannpbTgYsj8P3Kz16DKjfwAWW+oEaWrcHSsbvbbjNY27yACXJAc2BSblHZLWkIh0rqR+AStXQSKLQ==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"b79fc93f-acf4-4f46-a135-4fa35a14815e\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "d676a29a-88dd-4e3a-a0cd-c2026129c376" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4b06447d-1f8f-40dd-93b0-3ff7fa0592fd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071536Z:4b06447d-1f8f-40dd-93b0-3ff7fa0592fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:15:36 GMT" - ], - "Content-Length": [ - "1956" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -432,3766 +288,48 @@ "no-cache" ], "x-ms-request-id": [ - "63f31e04-d580-49ff-a55e-617464c11029" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4b1e45b3-7f4c-429c-8ff4-279bae210ff6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071607Z:4b1e45b3-7f4c-429c-8ff4-279bae210ff6" + "38870360-f107-42bf-a137-3ac8c2b2e909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:16:07 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5ce895cf-042f-4f37-9fe4-1f99be337412" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f5c1f445-e63e-4c94-b91d-6c2cabf07f8e" - ], "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071638Z:f5c1f445-e63e-4c94-b91d-6c2cabf07f8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:16:37 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "77c6a8d4-153e-42ae-bddd-7abe04a39888" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-hdi-served-by": [ - "eastus" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "x-ms-correlation-request-id": [ - "ee4b6895-baa9-40c9-b96a-99c44bd5e737" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "0209a9b8-9ea2-482b-8635-154616a1648f" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T071709Z:ee4b6895-baa9-40c9-b96a-99c44bd5e737" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "KOREACENTRAL:20230721T091055Z:0209a9b8-9ea2-482b-8635-154616a1648f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 07:17:08 GMT" + "Fri, 21 Jul 2023 09:10:55 GMT" ], "Content-Length": [ - "23" + "288" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4aff6105-989d-40f7-9c98-20f11bc973b4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "1758279f-9583-4b43-bfa1-14e5f4849695" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071739Z:1758279f-9583-4b43-bfa1-14e5f4849695" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:17:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eebdf1d7-e7cf-4c1f-9811-5cdac42601c1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "18be1efa-0a3b-4178-a305-4119cfdf2325" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071810Z:18be1efa-0a3b-4178-a305-4119cfdf2325" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:18:10 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9237c5ef-63b7-46cd-a415-e6cad6e5acae" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "01a021a4-fcac-4591-992f-aef531aa57c5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071841Z:01a021a4-fcac-4591-992f-aef531aa57c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:18:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9c30bba0-d6f5-4f79-821c-5ca48e236ae5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "60a95812-e3b1-476d-bf34-599b11671eab" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071911Z:60a95812-e3b1-476d-bf34-599b11671eab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:19:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "344fce84-b901-4ef4-a2af-150dcd63ca0b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e5df7663-9b17-40cd-9649-75bd51431be5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T071942Z:e5df7663-9b17-40cd-9649-75bd51431be5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:19:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "26397c84-e2ee-4057-a50f-92e0c78c30f9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "06e96c20-e37f-4576-94ae-d1439fcfd0da" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072013Z:06e96c20-e37f-4576-94ae-d1439fcfd0da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:20:13 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9be21de2-26f2-4b2e-a32f-03854e522067" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b01d8c0d-5c01-4fd7-b030-3afb9e0a27a8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072044Z:b01d8c0d-5c01-4fd7-b030-3afb9e0a27a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:20:43 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ecdbff90-59a2-4feb-bc52-a518dab2f478" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9b90a6e8-eaeb-4066-b5a2-b177284a1605" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072115Z:9b90a6e8-eaeb-4066-b5a2-b177284a1605" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:21:14 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b3566c4f-7e6f-407d-9553-d703fee16234" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8c55592e-5efd-4591-9bb0-b88a66161879" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072145Z:8c55592e-5efd-4591-9bb0-b88a66161879" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:21:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "02a4237f-cd4c-42eb-bad0-5c0fed763273" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "dada2c0c-49ce-4e7c-b431-6ede89ed8cfe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072216Z:dada2c0c-49ce-4e7c-b431-6ede89ed8cfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:22:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3138ff1f-44c0-45ac-8563-927bbe9d5fcd" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "dc98cb9a-650c-4ce0-9deb-bd8824f4aa2d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072247Z:dc98cb9a-650c-4ce0-9deb-bd8824f4aa2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:22:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0f30b5e8-a96b-46f3-82be-3d4b50825daf" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9c7c09ea-a58b-4f99-b980-ae7043185d68" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072318Z:9c7c09ea-a58b-4f99-b980-ae7043185d68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:23:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "91563bcf-a6a3-4bdf-a7f0-b13f1d628ab2" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f32ef1b1-0775-492c-8838-296932122f10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072348Z:f32ef1b1-0775-492c-8838-296932122f10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:23:48 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8ba2393f-dd9b-47a1-9ebf-ff4a7eee11c3" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3b02e523-8ac0-4252-b9a5-8576f53bbc61" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072419Z:3b02e523-8ac0-4252-b9a5-8576f53bbc61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:24:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b41d13fd-ef17-4855-9d90-11947933579e" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a4057d30-6ecf-4ced-8bd6-702d118cdd88" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072450Z:a4057d30-6ecf-4ced-8bd6-702d118cdd88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:24:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b3e8fbd0-19d7-4df5-b103-4becbdc0ee2f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "bde128fb-f6ea-4514-83f7-981fff60cd1f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072520Z:bde128fb-f6ea-4514-83f7-981fff60cd1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:25:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a526c035-d003-488b-91dd-a04e5d6ed1cd" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "2492baea-e11d-4a02-8935-e6c3d2bd6b05" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072551Z:2492baea-e11d-4a02-8935-e6c3d2bd6b05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:25:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c5d0faba-f793-46af-8801-e36e317e4325" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "2362fa3e-ceb3-4a0c-bd4f-7600312fe819" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072622Z:2362fa3e-ceb3-4a0c-bd4f-7600312fe819" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:26:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aaa022b4-6277-402c-8167-931257bfcad2" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "c1c3401f-3e7d-4fc1-8d56-95e279abe5f5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072653Z:c1c3401f-3e7d-4fc1-8d56-95e279abe5f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:26:52 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d46b4c31-f040-404b-8092-ae1452ec252d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "51d80bfa-b193-4cad-bea9-ba43e113aa58" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072723Z:51d80bfa-b193-4cad-bea9-ba43e113aa58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:27:22 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2d9aaa7c-9a86-41eb-bb1a-234da29f5aba" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d7e2e47d-3135-44c4-8114-6190d49cb820" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072754Z:d7e2e47d-3135-44c4-8114-6190d49cb820" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:27:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4a54ae81-43b8-47f0-acb0-ab4ae9ed68d4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f8d21178-c661-483a-89bf-28d5d4268b78" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072825Z:f8d21178-c661-483a-89bf-28d5d4268b78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:28:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1e5cdc17-8e88-4995-a51c-c775d54ac68a" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "55b58a12-81e9-4220-972e-11f662ba24f6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072855Z:55b58a12-81e9-4220-972e-11f662ba24f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:28:55 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41215bc5-7b34-4003-a8f4-39ff7fbd9e8e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5c04cce3-1408-420b-9588-47ee854f7dd0" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "67ce5457-1075-4df9-af50-7b0b71fc4b20" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072856Z:67ce5457-1075-4df9-af50-7b0b71fc4b20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:28:56 GMT" - ], - "Content-Length": [ - "2174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ffa3d5-e22c-419f-9774-1944ea0b0b65" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4995adfe-7556-4e4f-b919-74eae89743d1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9485e7a0-9fe0-4976-b5f4-30a9ac463afe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072857Z:9485e7a0-9fe0-4976-b5f4-30a9ac463afe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:28:57 GMT" - ], - "Content-Length": [ - "2174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ffa3d5-e22c-419f-9774-1944ea0b0b65" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fa4a1879-053b-4ec4-88e7-d887a6e4d128" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d566a107-dac5-4221-95e9-f45901a05432" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073101Z:d566a107-dac5-4221-95e9-f45901a05432" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:31:01 GMT" - ], - "Content-Length": [ - "2243" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "08bda5c9-baca-4565-b7f4-879fb33169f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7a2fe290-860b-4e86-a99a-5b657b096260" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a532501c-652e-401d-a358-ee84bdaf3284" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073103Z:a532501c-652e-401d-a358-ee84bdaf3284" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:31:02 GMT" - ], - "Content-Length": [ - "2243" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "361dac46-7aba-49d9-8aa4-7e3d4501a1bb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ca33255f-11e2-41cc-8392-441abf43fc4d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "bb3ec5f6-2ae2-48ad-a748-5d1fb3d20e94" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073328Z:bb3ec5f6-2ae2-48ad-a748-5d1fb3d20e94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:33:27 GMT" - ], - "Content-Length": [ - "2174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c05af83e-8f61-456e-a220-ceabd2b611e3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6c4ef39f-e274-421a-aa99-e48b10f12d26" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "edfb6780-ea5e-4ba2-a3e4-42be3d7e4541" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073329Z:edfb6780-ea5e-4ba2-a3e4-42be3d7e4541" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:33:29 GMT" - ], - "Content-Length": [ - "2174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c05af83e-8f61-456e-a220-ceabd2b611e3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b18be129-4587-4f0d-a96e-ca0855cdb23f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "77c277a0-2701-40d6-ba8d-aec64bcac4d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073533Z:77c277a0-2701-40d6-ba8d-aec64bcac4d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:35:33 GMT" - ], - "Content-Length": [ - "2455" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"08:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/roles/workernode/autoscale?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9yb2xlcy93b3JrZXJub2RlL2F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ffa3d5-e22c-419f-9774-1944ea0b0b65" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "112" - ] - }, - "RequestBody": "{\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/operationresults/6809b4d2-f3cc-4c4e-bc84-eac88afc4970-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/6809b4d2-f3cc-4c4e-bc84-eac88afc4970-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "95dc2475-cb54-456d-ae3b-f71de7f31d65" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "73785fe5-d20d-4ac2-98bc-b6d2012c4d80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T072859Z:73785fe5-d20d-4ac2-98bc-b6d2012c4d80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:28:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/roles/workernode/autoscale?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9yb2xlcy93b3JrZXJub2RlL2F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "361dac46-7aba-49d9-8aa4-7e3d4501a1bb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2" - ] - }, - "RequestBody": "{}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/operationresults/e52c28b5-fca7-410f-8ea0-a17e5c1758c8-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/e52c28b5-fca7-410f-8ea0-a17e5c1758c8-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "2212016e-47fd-4dcc-b55b-703367ba299e" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0e8cf090-e956-4c2a-9d8f-12b27da0282a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073125Z:0e8cf090-e956-4c2a-9d8f-12b27da0282a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:31:25 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/roles/workernode/autoscale?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9yb2xlcy93b3JrZXJub2RlL2F1dG9zY2FsZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c05af83e-8f61-456e-a220-ceabd2b611e3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "604" - ] - }, - "RequestBody": "{\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"08:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/operationresults/72847fcb-6a43-464a-9fd2-ca648c5d83dd-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/72847fcb-6a43-464a-9fd2-ca648c5d83dd-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "bfb42195-e85f-40b8-9d90-ce6666eec592" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3e9ffeef-97d3-4ffe-bb23-30a166022dcb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073331Z:3e9ffeef-97d3-4ffe-bb23-30a166022dcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:33:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/6809b4d2-f3cc-4c4e-bc84-eac88afc4970-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy82ODA5YjRkMi1mM2NjLTRjNGUtYmM4NC1lYWM4OGFmYzQ5NzAtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ffa3d5-e22c-419f-9774-1944ea0b0b65" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d7bc5397-ca9a-4a5a-881c-7476ce4e37f6" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3143bdc1-8501-4199-87ed-733e944ed843" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073000Z:3143bdc1-8501-4199-87ed-733e944ed843" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:29:59 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/6809b4d2-f3cc-4c4e-bc84-eac88afc4970-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy82ODA5YjRkMi1mM2NjLTRjNGUtYmM4NC1lYWM4OGFmYzQ5NzAtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ffa3d5-e22c-419f-9774-1944ea0b0b65" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "312bf82a-7688-4155-83d8-09efe1e6ebb1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "498d7a72-1cbd-491b-8ebf-b33b838f1b98" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073100Z:498d7a72-1cbd-491b-8ebf-b33b838f1b98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:31:00 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/operationresults/6809b4d2-f3cc-4c4e-bc84-eac88afc4970-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9vcGVyYXRpb25yZXN1bHRzLzY4MDliNGQyLWYzY2MtNGM0ZS1iYzg0LWVhYzg4YWZjNDk3MC0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "60ffa3d5-e22c-419f-9774-1944ea0b0b65" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "18550525-d80d-4610-a7f3-0243c63ae0d9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "34458b49-fb82-4d6a-9f8c-ab9dfe7cd34f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073101Z:34458b49-fb82-4d6a-9f8c-ab9dfe7cd34f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:31:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/e52c28b5-fca7-410f-8ea0-a17e5c1758c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9lNTJjMjhiNS1mY2E3LTQxMGYtOGVhMC1hMTdlNWMxNzU4YzgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "361dac46-7aba-49d9-8aa4-7e3d4501a1bb" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4e3cadf6-759c-47a0-ba30-6b80525e1aeb" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7f99f8f1-2a0b-4fca-a236-80dc50049517" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073226Z:7f99f8f1-2a0b-4fca-a236-80dc50049517" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:32:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/e52c28b5-fca7-410f-8ea0-a17e5c1758c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy9lNTJjMjhiNS1mY2E3LTQxMGYtOGVhMC1hMTdlNWMxNzU4YzgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "361dac46-7aba-49d9-8aa4-7e3d4501a1bb" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "520b849d-8378-401f-842e-2a939b018b4b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "bca526a1-f9e9-42c5-ac9b-68048599ebf0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073326Z:bca526a1-f9e9-42c5-ac9b-68048599ebf0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:33:26 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/operationresults/e52c28b5-fca7-410f-8ea0-a17e5c1758c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9vcGVyYXRpb25yZXN1bHRzL2U1MmMyOGI1LWZjYTctNDEwZi04ZWEwLWExN2U1YzE3NThjOC0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "361dac46-7aba-49d9-8aa4-7e3d4501a1bb" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "02720274-db04-4f67-a1c2-eee3310b5d0d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5e56c961-9dff-410a-bf70-b85a0c572134" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073326Z:5e56c961-9dff-410a-bf70-b85a0c572134" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:33:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/72847fcb-6a43-464a-9fd2-ca648c5d83dd-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy83Mjg0N2ZjYi02YTQzLTQ2NGEtOWZkMi1jYTY0OGM1ZDgzZGQtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c05af83e-8f61-456e-a220-ceabd2b611e3" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0fe02c3b-25e8-4dd9-a4ad-cdc8f65757ae" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b0e111c3-bd22-4638-ab04-4659a1ada68d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073431Z:b0e111c3-bd22-4638-ab04-4659a1ada68d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:34:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/azureasyncoperations/72847fcb-6a43-464a-9fd2-ca648c5d83dd-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9henVyZWFzeW5jb3BlcmF0aW9ucy83Mjg0N2ZjYi02YTQzLTQ2NGEtOWZkMi1jYTY0OGM1ZDgzZGQtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c05af83e-8f61-456e-a220-ceabd2b611e3" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a69003a5-eab0-4d6c-8821-86e6a2fc56a5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b84e9d00-6b26-48c1-b7f3-2027cd8b0ec3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073532Z:b84e9d00-6b26-48c1-b7f3-2027cd8b0ec3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:35:32 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911/operationresults/72847fcb-6a43-464a-9fd2-ca648c5d83dd-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMS9vcGVyYXRpb25yZXN1bHRzLzcyODQ3ZmNiLTZhNDMtNDY0YS05ZmQyLWNhNjQ4YzVkODNkZC0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c05af83e-8f61-456e-a220-ceabd2b611e3" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fe7f7bec-c0fe-48bc-96a6-e7adf95e63c2" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "48244881-7d54-43a3-a11a-618cb0321c49" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073532Z:48244881-7d54-43a3-a11a-618cb0321c49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:35:32 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c77dc6d9-e667-4bb5-9f51-15b9d1a1a2b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "31822252-5e97-43cb-b893-63b32ae4e5cd", - "5951ea58-5f28-4a22-9124-ca2a813d5464", - "99c751b2-af1f-491e-973d-f64b3b98368f", - "6651d909-aedf-4e32-a06e-98b4bbae0810", - "a9d62f06-7e65-4a3a-b5e7-e14058391839", - "6a8a1bc1-a3a7-43ea-8804-32be6150df42", - "ebf3fe02-5963-40d3-a321-1d6423e30f54", - "ec398901-3bfb-47d6-be37-94fb7974c13b", - "ca68da6e-5f71-46be-a109-89d69858cee0", - "3c228146-c61f-46b8-b6b2-8479be16fab5", - "1a4bc3ec-b7b3-418a-a025-9558cc649d67", - "7518b2f5-7865-4cc9-8c38-85e0655d5b98", - "1c897921-99aa-47ce-8769-a68a6b4dea07", - "30d9f382-3d23-4665-9272-55cb706768a2" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "efd7426c-04b8-495e-9a2d-63bc2f0a8022" - ], - "x-ms-correlation-request-id": [ - "efd7426c-04b8-495e-9a2d-63bc2f0a8022" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073539Z:efd7426c-04b8-495e-9a2d-63bc2f0a8022" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:35:39 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "280574" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.HDInsight/clusters/xinli1debugipsec\",\r\n \"name\": \"xinli1debugipsec\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"263aad4e-6765-495a-9ba6-c5edab28ef5a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a836521cad934fc89c517a90ae892a7a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-27T07:38:27.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1debugiphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.Storage/storageAccounts/xinli1debugiphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1debugipsec-2023-03-27t07-37-02-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.HDInsight/clusters/test-denyinbound\",\r\n \"name\": \"test-denyinbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Australia East\",\r\n \"etag\": \"17ac0a46-8e67-414f-bb3c-ca5c4bd35712\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6d2976b47ed470d9b5f11bb7d81db2b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-29T11:13:22.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdenyinbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Storage/storageAccounts/testdenyinbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-denyinbound-2023-03-29t11-04-30-897z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-outbount-cvrio4\",\r\n \"name\": \"hadoop-outbount-cvrio4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"b577a3fd-3386-4a5e-9149-a8ae7a809d12\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6fcf0aa36cce419da9a9e7222cf4533c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T12:55:12.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"192.168.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-outbount-cvrio4-2023-02-27t12-53-32-920z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-sentinel\",\r\n \"name\": \"hadoop-sentinel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"84ed899b-d6f7-481e-9976-f5859cc7ddce\",\r\n \"tags\": {\r\n \"SENTINAL\": \"DONTDELETE\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"053fc6fe2d3a4196b4ed8c5845b6a297\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-02T13:28:33.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-sentinel-2023-01-02t13-26-06-000z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdptestcluster1\",\r\n \"name\": \"hdptestcluster1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"6294e7eb-d942-4da0-bb22-69ac8aa8ab10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"711698d20f7d4e559b55785590fdc382\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T20:31:14.29\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdptestclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdptestclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdptestcluster1-2023-02-16t20-29-01-114z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.HDInsight/clusters/srinihadooptest\",\r\n \"name\": \"srinihadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"6799f8b5-f6b7-490b-bfce-c8e96c0a69d8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4a97d33a74354cb8b505314852fd67dc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T06:09:38.023\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinihadooptehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.Storage/storageAccounts/srinihadooptehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinihadooptest-2023-04-03t06-06-59-470z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumanatahivetest\",\r\n \"name\": \"sumanatahivetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"e0ab8abe-ea66-4786-a963-b8bd59cd68f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0752c11287947f6ad407dc35ef9f0a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T10:25:01.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 42\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumanatahivetest-2023-02-23t10-13-41-228z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantahadooptest\",\r\n \"name\": \"sumantahadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"3e2ef5dc-b06c-49f1-a0f5-1064c87c2904\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a3a347bee65443c5b4ffc02c295dca36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T06:32:06.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantahadooptestcluste-2023-03-24t06-28-54-846z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantatestsparkcluster\",\r\n \"name\": \"sumantatestsparkcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"eadbad16-940e-4ba1-8d10-e35b31b3038c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7571860162e244c9ac5f369c6a6182bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-26T02:19:04.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantatestsparkcluster-2023-02-26t02-15-03-734z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryahadoop\",\r\n \"name\": \"suryahadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"efc66412-384f-478b-98b8-b9c5370b1a9e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b6b32d28d9e4bcf81e16dcceb9d7c90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T09:31:39.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryahadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryahadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryahadoop-2023-02-16t09-30-23-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryaspark\",\r\n \"name\": \"suryaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"4e2c5b28-0661-4614-9557-60741cb699d4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f34179e0af574bd990a4a80e0f850420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T09:51:40.6\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryaspark-2023-02-23t09-49-41-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.HDInsight/clusters/andarmod-march2023\",\r\n \"name\": \"andarmod-march2023\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58889b01-8efb-45b7-a3da-3c1e8eea158f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b47d639b35f94be4955cc2dec8b2320d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-07T16:54:08.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodmarchhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.Storage/storageAccounts/andarmodmarchhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-march2023-2023-03-07t16-51-41-821z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyanipsectest1\",\r\n \"name\": \"chaoyanipsectest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e788daa3-aa02-49d3-b558-29403e44da93\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.5.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2207131812.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"367ac0f996a0421bbce329925e291b05\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-11T08:43:11.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyanipsecthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyanipsecthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyanipsectest-2022-08-11t08-39-02-672z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyantesting1\",\r\n \"name\": \"chaoyantesting1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"29167e66-afe2-4c5f-b8b7-00b165d9a72e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"43fb4c0684964cc09e2bb85da780e87b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-05-19T05:33:22.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyantestinhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyantestinhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyantesting-2022-05-19t05-31-45-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalhbasecluster\",\r\n \"name\": \"faisalhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c2d260b3-7c88-4293-a197-3bd01ba5cba9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"fdd6f2f04e214787a91ab03d8c70e43c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-09T18:59:29.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"Execution of the following scripts failed :- Custom\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalhbasecluster-2023-02-09t18-57-54-885z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalkafkacluster\",\r\n \"name\": \"faisalkafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6a22e8d4-9a64-4f7c-81e0-dbc10fdc4396\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"f96f014c44104e059b9b76cdf5786212\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:32:47.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalkafkaclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalkafkaclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalkafkaclist-2023-02-15t17-31-20-101z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsparkthreedotone\",\r\n \"name\": \"faisalsparkthreedotone\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"28e18c5f-d479-4420-a009-f239f0866d77\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"08a08b13feb040f695fe823f9cd4ce0b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T15:01:25.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsparkthhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsparkthhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsparkthreedotone-2023-02-16t15-00-02-589z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprk3dot1\",\r\n \"name\": \"faisalsprk3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3e344fb9-ae16-4de5-9d8a-88f3492631f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b19b209e520840a798c9fdf0853ca32d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-14T17:03:17.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprk3dohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprk3dohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprk3do-2023-02-14t17-01-00-509z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprkcluster3dot1\",\r\n \"name\": \"faisalsprkcluster3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"293ccb46-de93-4a32-a7db-1b7e7354530b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"40de045ed14244048ed41c11aa55ce6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:31:11.627\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprkcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprkcluster-2023-02-15t17-29-17-755z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.HDInsight/clusters/for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"name\": \"for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fbca8ad-f6d9-459a-85de-2d41bbc13acd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"218204ad46f5479f8700266ad08536ab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T02:22:59.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"forhditestspahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.Storage/storageAccounts/forhditestspahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"forhdi-test-spark-24-do-2023-02-15t02-20-51-216z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911\",\r\n \"name\": \"hdi-ps-test2911\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b79fc93f-acf4-4f46-a135-4fa35a14815e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"535ca54a3cf347c2864c6d926497a2e5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"08:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T07:15:36.173\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2911.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1761.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.Storage/storageAccounts/storagepstest1761\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2911\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.HDInsight/clusters/hdi-spark-test-eastus\",\r\n \"name\": \"hdi-spark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"de91a5d7-3f91-49ad-a023-99cceacd47f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"46ee674f530e4c6eac0bf40ca8fa6b13\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T18:25:18.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-spark-test-eastus-2023-02-23t18-23-27-300z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.HDInsight/clusters/jacky-spart-cluster\",\r\n \"name\": \"jacky-spart-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f93e581f-303e-40f6-aa2e-e2af037d2015\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ed0cbe2a53f6451a9a9a51943b3b7e4c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 1,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:34:56.1\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jackyspartcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.Storage/storageAccounts/jackyspartcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jacky-spart-cluster-2023-03-10t07-31-05-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/kafkajartest\",\r\n \"name\": \"kafkajartest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5dba8150-35d1-4431-9a33-1f6e645fb976\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"afa6e9ba6cb04b3dbb487637e4b4971c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T15:56:24.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafkajartesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/kafkajartesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafkajartest-2023-03-24t15-54-14-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/rampuvhbasecluster\",\r\n \"name\": \"rampuvhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"112945a7-a3d1-4600-8ae7-1d8f03309d10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"cce431c503424ea5a3c0d103329b7542\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-17T22:57:31.78\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rampuvhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/rampuvhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"rampuvhbasecluster-2023-01-17t22-44-44-409z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.HDInsight/clusters/shankarhadooptestcluster\",\r\n \"name\": \"shankarhadooptestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06e26256-25d4-4fba-9648-30f7078f0840\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c164b1edd07f4b3fbb0787d101784942\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T01:28:16.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shankarhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shankarhadoop-2023-03-23t01-23-49-690z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n },\r\n {\r\n \"name\": \"shankarhadoophdistorage2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark2d4\",\r\n \"name\": \"spark2d4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1153c11a-2a85-46e7-a734-52015dc5868d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c883f1ec21bc4c849523971654062efd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T07:42:07.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark2d4hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark2d4hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark2d4-2023-02-15t07-39-53-493z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark3d1\",\r\n \"name\": \"spark3d1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4684704b-9b54-4c86-af1c-7ef79b87b2aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7e791962c38f418b9474926b349621df\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-08T09:41:23.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark3d1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark3d1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark3d1-2023-03-08t09-39-29-001z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.HDInsight/clusters/sparkclustertest\",\r\n \"name\": \"sparkclustertest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8b31425f-33d6-4fb4-a949-8ecf8ab6931b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a49afaa3cee6473ea18436341998a8ca\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T05:40:39.997\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparkclusterteststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.Storage/storageAccounts/sparkclusterteststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparkclustertest-2023-02-20t05-37-29-162z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/sparktezviewtesting\",\r\n \"name\": \"sparktezviewtesting\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"51679a92-9088-4c04-a123-98b0d47a2f1f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"52575b0c9da14a91b6b0164b881fc0bd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T21:40:20.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparktezviewthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/sparktezviewthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparktezviewtesting-2023-04-03t21-38-23-344z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.HDInsight/clusters/sultan-hdi-cluster-1\",\r\n \"name\": \"sultan-hdi-cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8c758461-3e41-4c18-a9f3-5ce77e05a7bf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"63513e3e784441259bb73ad58c602241\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T15:51:03.267\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sultanhdiclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Storage/storageAccounts/sultanhdiclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sultan-hdi-cluster-2023-04-03t15-44-34-333z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.HDInsight/clusters/testhadoopv-rchandekar\",\r\n \"name\": \"testhadoopv-rchandekar\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"517c95d3-0333-442e-90fc-49c3aa0474c5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbdf8584bd7146bfa881a9f6d0edb126\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-19T09:11:15.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhadoopvrchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.Storage/storageAccounts/testhadoopvrchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhadoopv-rchandekar-2023-02-19t09-08-45-240z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/testsprk1\",\r\n \"name\": \"testsprk1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"80c39751-b509-48cc-b33b-f426446131c6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"00161d115cb043148e4ee70f3480841a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-22T15:55:55.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsprk1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/testsprk1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testsprk1-2023-03-22t15-53-40-199z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut_res_group_extremelengthextremelengthextremelengthextremelengthextremelengthextremelen/providers/Microsoft.HDInsight/clusters/wut-cluster-extremelengthextremelengt1\",\r\n \"name\": \"wut-cluster-extremelengthextremelengt1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ef9588d7-7391-4786-ac73-8a3bd685c737\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3438ce92023a43bfb69f13dd19abe1a1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-03T07:59:34.263\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-cluster-extremeleng-2023-03-03t07-50-04-213z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi1\",\r\n \"name\": \"wut-msi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"cbe06749-73db-43d4-bc7d-c659f66fae76\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3ab1d1b9f8f74bfe9e47b7f47bb2d484\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T10:21:20.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi1-2023-02-16t10-18-25-176z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi-with-disk\",\r\n \"name\": \"wut-msi-with-disk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"abce6322-b4bf-459b-8bf2-76d00b710b0b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"463aa4295be340609178d8503f319c5e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T07:17:39.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi-with-disk-2023-02-20t07-16-09-847z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1adls04191\",\r\n \"name\": \"x1adls04191\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b07b7393-e919-4fa3-a498-53a294c6c378\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"8e19fc8c328c4078aeaee5eead0dfba3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-04-19T05:40:17.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1adlsgen20419.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1adlsgen20419\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/x1usermsi0924\",\r\n \"key\": null,\r\n \"fileSystem\": \"x1adls04191fs\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/microsoft.managedidentity/userassignedidentities/x1usermsi0924\": {\r\n \"principalId\": \"048a9639-b7e1-4671-b9aa-2bab056c5b3b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.HDInsight/clusters/xinli1agentdebug\",\r\n \"name\": \"xinli1agentdebug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f2a8f840-0c8b-4588-af98-c0471c75f525\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e231aeff71145208dfd23b216e5167c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-28T02:48:54.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.39.1.25\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1agentdehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Storage/storageAccounts/xinli1agentdehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1agentdebug-2023-02-28t02-46-13-138z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-ssh-test\",\r\n \"name\": \"yalu-ssh-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"11482072-35bb-4f70-8c7c-d83fbd365235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"535fba725345441f84453158ed58bb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-03-28T05:51:27.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusshtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yalusshtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-ssh-test-2022-03-28t05-50-12-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yaluversiontest\",\r\n \"name\": \"yaluversiontest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8a084b25-3fdf-41dc-8524-ff314d5736eb\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2207131812.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"165dba2239b4435fb837bbb28cd94562\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-26T04:01:17.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluversiontehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluversiontehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yaluversiontest-2022-08-26t03-59-45-628z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweiuseprod\",\r\n \"name\": \"ziweiuseprod\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"a1c924a7-ef70-424c-a707-3acea34ed284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f5ed2b902a8c4148aaa06b2083c5fcf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-20T13:26:43.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweiuseprodhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweiuseprodhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweiuseprod-2022-02-20\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdihiveinteractivequery\",\r\n \"name\": \"hdihiveinteractivequery\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"e0406da8-4e88-47be-9046-bd73cc55730a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b630111eea894ea2b83b9927fd696708\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-06T19:40:13.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 18\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdihiveinterahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdihiveinterahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdihiveinteractivequery-2023-01-06t19-33-23-190z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.HDInsight/clusters/jairokafkacluster\",\r\n \"name\": \"jairokafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"72468a3d-3ff2-41a8-a319-0380807b9fda\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e4d6eaf7f2a84e9c8f73ecf5f916659c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T17:58:43.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jairokafkacluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.Storage/storageAccounts/jairokafkacluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jairokafkacluster-2023-02-27t17-54-29-913z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/zzzz-shangwei-test-pe\",\r\n \"name\": \"zzzz-shangwei-test-pe\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bd656217-7df4-4dbd-8767-deb0aa1007b5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2208310943.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"01bc6a206aea46a0844a6ba5e4c1e4ce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-09-28T11:53:42.887\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-test-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"asd-shangwei-test-pe-2022-09-28t11-39-57-881z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-test-msi\": {\r\n \"principalId\": \"2f5a5662-86b4-4c5f-a3b8-eba4db9b5ee0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.HDInsight/clusters/hiveserverinteractivetestfeb20\",\r\n \"name\": \"hiveserverinteractivetestfeb20\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"6cabab4b-9e77-4a77-b9f6-e36fbb52d701\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f3518a9df252426a87aaabe174d34549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T04:55:42.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hiveserverinthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.Storage/storageAccounts/hiveserverinthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hiveserverinte-2023-02-20t04-52-17-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.HDInsight/clusters/shangwei-poc-hdi\",\r\n \"name\": \"shangwei-poc-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4dc7b507-2bf7-47dd-baf5-fe0fd82a7718\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e97453096a1423fae7bf95c28faf715\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T13:24:27.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipochdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Storage/storageAccounts/shangweipochdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-poc-hdi-2023-02-15t13-22-36-476z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.HDInsight/clusters/test-outbound\",\r\n \"name\": \"test-outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"6feb5fe3-fa25-4116-b17b-4d0771b02ff3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"aa331a83baf348149ce4f24b5ab04f7e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-14T09:42:47.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.3.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsheinoutbound.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Storage/storageAccounts/testsheinoutbound\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-outbound-2023-03-14t09-36-58-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweinewregion\",\r\n \"name\": \"ziweinewregion\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany North\",\r\n \"etag\": \"fcd8e6b6-92bf-4c33-a1ae-7fddaec7a588\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b4a777151b6a4402bc22c9d9224d01a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-06-09T06:27:54.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweinewregiohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweinewregiohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweinewregion-2022-06-09t06-26-13-110z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip1\",\r\n \"name\": \"wuttesttip1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"c643f24b-ab3b-446a-a944-cc22976b6d5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6878300ba5904fee8d37ea4c49fd657e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T08:05:36.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220830tip1\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip2\",\r\n \"name\": \"wuttesttip2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c6a1e318-6b1a-4ee7-9678-3c45a460054a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5022c17e86c04151b52efa226c781236\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T09:04:25.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220831tip2\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestec2023021501\",\r\n \"name\": \"zzytestec2023021501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"f80298a0-42c9-45fb-bcbd-c21949a368e6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302140238.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab068287b1c54e2e86f3cd009a2994f7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-02-15T05:51:53.337\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestec2023hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestec2023hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestec20230214-2023-02-15t05-48-55-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytesteccert003\",\r\n \"name\": \"zzytesteccert003\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"717d837f-3ba3-4b6a-8316-488824d78c8a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"926003a85ef746a79582414d9d0f8aef\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-01-30T08:53:33.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesteccerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesteccerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytesteccert003-2023-01-30t08-52-19-685z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.HDInsight/clusters/alaw-hadoop\",\r\n \"name\": \"alaw-hadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"a644024e-45da-4b23-8347-7ccadb095d46\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"acf2f5f3b77d49eda85a0d2ba1854d3e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-02T02:05:48.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"alawhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.Storage/storageAccounts/alawhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"alaw-hadoop-2023-03-02t02-05-00-094z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy12testclimsgraph\",\r\n \"name\": \"zzy12testclimsgraph\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b1954f3b-435e-4d0e-8129-4e82dd07e189\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"30cbd2b68eaf4d899a1f88852ae30d0a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-05-18T04:00:46.723\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://lanjuntesthdihdistorage.blob.core.windows.net/ssh/changecredentials.sh. Exception message: Script URI cannot be retrieved correctly. HTTP Status code: Conflict.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy12testclimsgraph\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-01\",\r\n \"name\": \"shiyi-pl-hadoop-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29990d6a-6caa-4b11-82f6-30fea35a6fc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c2e3babae5ec4ee08a36c2c90894eced\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:41:45.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 8\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa01.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa01\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-01\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-02\",\r\n \"name\": \"shiyi-pl-hadoop-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"fdf7f0f4-800a-45fc-8b4f-5357b8b1c3d2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2fd6536c8ce148bda284f73d7444d400\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f8\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:46:03.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-03\",\r\n \"name\": \"shiyi-pl-hadoop-03\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"3b96fb85-fa13-40f2-8abe-901ca94902e0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"11f0972bacd44965a373acd717924ecd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f16\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:14:35.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa03.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa03\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-03\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-04\",\r\n \"name\": \"shiyi-pl-hadoop-04\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"83d4b2bd-a438-4884-b578-07fd80427e3d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c1fc40e15a2d41dfab258e833e6ba850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:16:52.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa04.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa04\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-04\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-05\",\r\n \"name\": \"shiyi-pl-hadoop-05\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"c4b9f731-3773-4ff7-b484-5b0ff3394ff7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c60d7a208817420d8320be7c677ab2f2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:24:54.443\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 128\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa05.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa05\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-05\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-06\",\r\n \"name\": \"shiyi-pl-hadoop-06\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"302f52c5-59fc-4636-938d-d491fe9920fc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8247d20bc8e448279746c2b62ce805b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:19:35.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa06.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa06\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-06\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-07\",\r\n \"name\": \"shiyi-pl-hadoop-07\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f4ef091a-a24c-417c-9962-bcfc8b02de8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"239c19a2c1554ed7862044e0e4703f22\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:37:41.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa07.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa07\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-07\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-08\",\r\n \"name\": \"shiyi-pl-hadoop-08\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f76467ac-9a10-4174-b85a-e96845254047\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"d8fda12bd8b444b186f37dea68622d31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:39:46.89\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa08.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa08\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-08\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-09\",\r\n \"name\": \"shiyi-pl-hadoop-09\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29bfd3d6-d1bb-4b99-9bce-f4c149495311\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b0602bd423544d729d56f6dd50a5fe78\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:15.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa09.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa09\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-09\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-10\",\r\n \"name\": \"shiyi-pl-hadoop-10\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8e41f979-734a-47e5-a6a6-ef6a80a2a9df\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1b548cbfb8b24d46a360df3d6ccf07c8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:29.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa10.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa10\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-10\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-11\",\r\n \"name\": \"shiyi-pl-hadoop-11\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"d6696882-f688-4e87-bd74-b7e51b809d79\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4c8e5b20edca4aef98d5590715a9dd2c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:10.573\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa11.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa11\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-11\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-12\",\r\n \"name\": \"shiyi-pl-hadoop-12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7620fa29-cc62-4974-8540-bdfa2dc5f878\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9d2d4967c7a14a22ae8718988b6caa2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:25.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa12.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa12\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-12\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hbase-01\",\r\n \"name\": \"shiyi-pl-hbase-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8db0b47e-ec70-47c0-bfc8-1dec22d35b87\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"3b5e5a78385a4c0da678b1d30c0ca0b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:03:24.73\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 22\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhbase0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.Storage/storageAccounts/shiyiplhbase0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hbase-01-2023-03-20t02-57-30-182z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.HDInsight/clusters/shiyi-pl-hdp-3\",\r\n \"name\": \"shiyi-pl-hdp-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7d83c57b-727d-4610-b944-76bed3845d6e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"75d7946e29ae42c0b5be6919c1569cf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:30:56.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhdp3hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.Storage/storageAccounts/shiyiplhdp3hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hdp-3-2023-03-10t07-28-45-657z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hive-01\",\r\n \"name\": \"shiyi-pl-hive-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"1614b7e9-b8f2-439e-a31c-a9c568a69f39\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"e7f7e90b1ab34b6a8ab3d5475f3f3eb6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:10:23.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhive01hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.Storage/storageAccounts/shiyiplhive01hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hive-01-2023-03-20t03-06-54-850z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-01\",\r\n \"name\": \"shiyi-pl-kafka-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8f76ee5e-304f-4833-a2a0-725661b34f13\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"c8f68a7bb80b4f7b9dc5c2033af2da38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T05:44:19.98\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafka0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.Storage/storageAccounts/shiyiplkafka0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-01-2023-03-20t05-41-36-217z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-02\",\r\n \"name\": \"shiyi-pl-kafka-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"014feb11-1c70-4766-85b7-91f10423540d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"kafka\",\r\n \"componentVersion\": {\r\n \"kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"45d348febd6440b89502cb184a0ce201\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T09:33:10.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafkasa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.Storage/storageAccounts/shiyiplkafkasa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4432/providers/Microsoft.HDInsight/clusters/hdi-ps-test2911?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjkxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c77dc6d9-e667-4bb5-9f51-15b9d1a1a2b1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/25e494ba-e939-4cec-a42f-9f63c0b545b4-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/25e494ba-e939-4cec-a42f-9f63c0b545b4-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "17923710-f668-48e2-b0a7-d496dd87e488" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b3480058-d03e-44d1-962e-9951b7602dbe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073541Z:b3480058-d03e-44d1-962e-9951b7602dbe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:35:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/25e494ba-e939-4cec-a42f-9f63c0b545b4-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMjVlNDk0YmEtZTkzOS00Y2VjLWE0MmYtOWY2M2MwYjU0NWI0LTAtcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c77dc6d9-e667-4bb5-9f51-15b9d1a1a2b1" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b16de4ee-d8a8-4096-89b4-149f5c5066d2" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "123a0b51-1462-4130-9822-ca3fdb54b5ee" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073641Z:123a0b51-1462-4130-9822-ca3fdb54b5ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:36:41 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/25e494ba-e939-4cec-a42f-9f63c0b545b4-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy8yNWU0OTRiYS1lOTM5LTRjZWMtYTQyZi05ZjYzYzBiNTQ1YjQtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c77dc6d9-e667-4bb5-9f51-15b9d1a1a2b1" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9330c9a8-c0ee-4cea-a1d7-dd78ce765bf9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8d5b6c1e-0188-4776-9347-81077f5b65c3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T073641Z:8d5b6c1e-0188-4776-9347-81077f5b65c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:36:41 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4432?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0NDMyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ae31b943-5612-432d-8225-9e59b79bf015" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "d24f1749-2965-4513-a67b-51ae38669167" - ], - "x-ms-correlation-request-id": [ - "d24f1749-2965-4513-a67b-51ae38669167" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073643Z:d24f1749-2965-4513-a67b-51ae38669167" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:36:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "64c4463f-e44d-4d64-aea8-e30a31d85593" - ], - "x-ms-correlation-request-id": [ - "64c4463f-e44d-4d64-aea8-e30a31d85593" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073659Z:64c4463f-e44d-4d64-aea8-e30a31d85593" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:36:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "25a3eea4-c2db-4eab-a9ea-9362d420da34" - ], - "x-ms-correlation-request-id": [ - "25a3eea4-c2db-4eab-a9ea-9362d420da34" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073714Z:25a3eea4-c2db-4eab-a9ea-9362d420da34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:37:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "24518261-fc19-4ea2-81cd-14bd849ffaf4" - ], - "x-ms-correlation-request-id": [ - "24518261-fc19-4ea2-81cd-14bd849ffaf4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073729Z:24518261-fc19-4ea2-81cd-14bd849ffaf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:37:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "72252528-4a3a-4bf7-a270-1a407a8b8740" - ], - "x-ms-correlation-request-id": [ - "72252528-4a3a-4bf7-a270-1a407a8b8740" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073744Z:72252528-4a3a-4bf7-a270-1a407a8b8740" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:37:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "bbe274de-a8df-4182-9053-6808648de720" - ], - "x-ms-correlation-request-id": [ - "bbe274de-a8df-4182-9053-6808648de720" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073759Z:bbe274de-a8df-4182-9053-6808648de720" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:37:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "41570ae2-f23c-409c-82ce-2f7bed433d74" - ], - "x-ms-correlation-request-id": [ - "41570ae2-f23c-409c-82ce-2f7bed433d74" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073815Z:41570ae2-f23c-409c-82ce-2f7bed433d74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:38:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "919100ae-ee0c-4e23-bd3c-28fe615658a7" - ], - "x-ms-correlation-request-id": [ - "919100ae-ee0c-4e23-bd3c-28fe615658a7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073830Z:919100ae-ee0c-4e23-bd3c-28fe615658a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:38:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "e091f68f-9a41-4069-9e8c-dd6f60edee63" - ], - "x-ms-correlation-request-id": [ - "e091f68f-9a41-4069-9e8c-dd6f60edee63" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073845Z:e091f68f-9a41-4069-9e8c-dd6f60edee63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:38:44 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "c15f54f4-78bf-4a20-9d23-4f7c1fce6b65" - ], - "x-ms-correlation-request-id": [ - "c15f54f4-78bf-4a20-9d23-4f7c1fce6b65" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073900Z:c15f54f4-78bf-4a20-9d23-4f7c1fce6b65" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:38:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ0MzItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFEwTXpJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "11b5b743-7b7f-4258-bcb8-95987f5008e1" - ], - "x-ms-correlation-request-id": [ - "11b5b743-7b7f-4258-bcb8-95987f5008e1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T073900Z:11b5b743-7b7f-4258-bcb8-95987f5008e1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 07:38:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"key1==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"key2==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-AutoscaleRelatedCommands": [ - "hdi-ps-test2911", - "group-ps-test4432", - "storagepstest1761" + "hdi-ps-test4962", + "group-ps-test8555", + "storagepstest8574" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAzureMonitorTests/TestAzureMonitorRelatedCommands.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAzureMonitorTests/TestAzureMonitorRelatedCommands.json index 4367d855d4af..b576cb02dbc5 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAzureMonitorTests/TestAzureMonitorRelatedCommands.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightAzureMonitorTests/TestAzureMonitorRelatedCommands.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3363?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8349?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "e282f056-d663-4215-9ec8-c8e22005f238" + "2d3f20d5-c48b-4e97-861b-7780ddb5b3c9" ], "Accept-Language": [ "en-US" @@ -14,8 +14,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "91be63e7-80b0-455a-9550-3c00d237a3a6" + "feaff32d-8ca4-40f7-85f0-aa722cfa2da5" ], "x-ms-correlation-request-id": [ - "91be63e7-80b0-455a-9550-3c00d237a3a6" + "feaff32d-8ca4-40f7-85f0-aa722cfa2da5" ], "x-ms-routing-request-id": [ - "WESTUS:20230407T031809Z:91be63e7-80b0-455a-9550-3c00d237a3a6" + "KOREASOUTH:20230724T032218Z:feaff32d-8ca4-40f7-85f0-aa722cfa2da5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:18:08 GMT" + "Mon, 24 Jul 2023 03:22:18 GMT" ], "Content-Length": [ "187" @@ -63,16 +63,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363\",\r\n \"name\": \"group-ps-test3363\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8349\",\r\n \"name\": \"group-ps-test8349\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.Storage/storageAccounts/storagepstest8508?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDg1MDg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8349/providers/Microsoft.Storage/storageAccounts/storagepstest4794?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDQ3OTQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "c5786664-bb0f-4dec-beeb-412b21129d37" + "fa755a2b-8211-4138-a6e2-5d607a4d832a" ], "Accept-Language": [ "en-US" @@ -80,8 +80,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/01882cab-51f7-4190-9391-9dbfbef62091?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/7a3cdd27-a7ba-4975-8e7b-4994031bffe3?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "01882cab-51f7-4190-9391-9dbfbef62091" + "7a3cdd27-a7ba-4975-8e7b-4994031bffe3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "1aec49af-531a-4baf-9668-a111c6ad985d" + "9634049f-37a6-409c-bb75-4a6decb9539c" ], "x-ms-routing-request-id": [ - "WESTUS:20230407T031813Z:1aec49af-531a-4baf-9668-a111c6ad985d" + "KOREASOUTH:20230724T032227Z:9634049f-37a6-409c-bb75-4a6decb9539c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:18:13 GMT" + "Mon, 24 Jul 2023 03:22:27 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,15 +142,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/01882cab-51f7-4190-9391-9dbfbef62091?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8wMTg4MmNhYi01MWY3LTQxOTAtOTM5MS05ZGJmYmVmNjIwOTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/7a3cdd27-a7ba-4975-8e7b-4994031bffe3?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy83YTNjZGQyNy1hN2JhLTQ5NzUtOGU3Yi00OTk0MDMxYmZmZTM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -161,2543 +161,59 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/01882cab-51f7-4190-9391-9dbfbef62091?monitor=true&api-version=2017-10-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ce28e8b4-6f7f-491c-b80a-750ba61801be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "39abe826-88f1-4bf1-b451-0d2082f61230" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T031830Z:39abe826-88f1-4bf1-b451-0d2082f61230" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:18:30 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/01882cab-51f7-4190-9391-9dbfbef62091?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8wMTg4MmNhYi01MWY3LTQxOTAtOTM5MS05ZGJmYmVmNjIwOTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ee30e169-3f99-4645-b739-43d9e5e7fec2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "ef6dc497-f2e2-4883-b226-297605cdbb59" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T031834Z:ef6dc497-f2e2-4883-b226-297605cdbb59" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:18:33 GMT" - ], - "Content-Length": [ - "1384" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.Storage/storageAccounts/storagepstest8508\",\r\n \"name\": \"storagepstest8508\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-07T03:18:11.806502Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-07T03:18:11.806502Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-04-07T03:18:11.4627654Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8508.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8508.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8508.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest8508.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8508-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8508-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8508-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.Storage/storageAccounts/storagepstest8508/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDg1MDgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f027470e-433c-42c6-ab29-98b4c0a6f2c8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "23f37256-4ecf-4121-aaef-e84997ac2960" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "a08e2e5e-dcbf-438a-81ae-aeac418ad489" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T031834Z:a08e2e5e-dcbf-438a-81ae-aeac418ad489" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:18:34 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"l/m7RUx5BQKwL3xUG35XC/YZJPUCkRUH4rLrZU7E/aabAbN/ycISuWhigGpfWsJ677MGHteGdGn6+AStz/70og==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"n7ruk0hP9x3SnwFm4ZvMFGOoaJ6TwijY3wrlaafXP4nDHIBFGnlkfeLlIA8irSxNG+/P6bdnuHJ9+AStoW7QqQ==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4ccdd41e-4496-47a0-b09e-9080d6e2c7c5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a5dc56ec-c7f5-449b-b39f-6efd1e308adf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T031836Z:a5dc56ec-c7f5-449b-b39f-6efd1e308adf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:18:35 GMT" - ], - "Content-Length": [ - "105467" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D15_v2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E48A_V4\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_F1\",\r\n \"STANDARD_F16\",\r\n \"STANDARD_F2\",\r\n \"STANDARD_F4\",\r\n \"STANDARD_F8\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E48a_v4\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"4.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_D15_V2\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D15_v2 (20 cores, 143360 MB)\",\r\n \"maxDataDiskCount\": 40,\r\n \"memoryInMb\": 143360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1024000,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"STANDARD_F1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F1 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 16384,\r\n \"webWorkerResourceDiskSizeInMb\": 16384\r\n },\r\n {\r\n \"name\": \"STANDARD_F16\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F16 (16 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 262144,\r\n \"webWorkerResourceDiskSizeInMb\": 262144\r\n },\r\n {\r\n \"name\": \"STANDARD_F2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 32768,\r\n \"webWorkerResourceDiskSizeInMb\": 32768\r\n },\r\n {\r\n \"name\": \"STANDARD_F4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F4 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 65536,\r\n \"webWorkerResourceDiskSizeInMb\": 65536\r\n },\r\n {\r\n \"name\": \"STANDARD_F8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F8 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 131072,\r\n \"webWorkerResourceDiskSizeInMb\": 131072\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E48a_v4 (48 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"East US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2142" - ] - }, - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest8508.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test3500\",\r\n \"key\": \"l/m7RUx5BQKwL3xUG35XC/YZJPUCkRUH4rLrZU7E/aabAbN/ycISuWhigGpfWsJ677MGHteGdGn6+AStz/70og==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.Storage/storageAccounts/storagepstest8508\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"c9710b38-7b97-426d-8044-9669ade40be6\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "85a905c1-cafd-41bc-b708-c1a6514cec9c" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5973fd19-735b-49f4-842f-566062562f9d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T031842Z:5973fd19-735b-49f4-842f-566062562f9d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:18:41 GMT" - ], - "Content-Length": [ - "1956" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500\",\r\n \"name\": \"hdi-ps-test3500\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c9710b38-7b97-426d-8044-9669ade40be6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"91f7303aa85b480292409fa5188b3a67\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2023-04-07T03:18:41.993\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest8508.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.Storage/storageAccounts/storagepstest8508\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3500\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9f77a82f-760d-4f22-9133-91d38e9e61e4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4279b9b8-9171-47e9-84e6-dbb99033b6b6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T031913Z:4279b9b8-9171-47e9-84e6-dbb99033b6b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:19:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "08e924bc-319e-42e2-ae1b-1716ae69490e" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "478bcea4-b85e-4078-ad67-fe8e925619ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T031944Z:478bcea4-b85e-4078-ad67-fe8e925619ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:19:44 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "10db7fc9-cdef-498e-8e8e-6445f91a19be" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7594352b-2ea2-44a9-9609-5108ee792b74" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032015Z:7594352b-2ea2-44a9-9609-5108ee792b74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:20:14 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "31e7fca1-7ed9-45bf-8880-67e8355d8b4a" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5f8186db-193a-420e-9896-17854a57624d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032045Z:5f8186db-193a-420e-9896-17854a57624d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:20:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9eb3ac19-a58d-46d5-ad73-ac9438da9516" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a867a1d7-ce04-4c02-91a0-e7fbc4516973" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032116Z:a867a1d7-ce04-4c02-91a0-e7fbc4516973" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:21:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "45f323a7-09e6-43d1-8e5b-436acaac0938" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d4c17054-0afd-498e-8182-af86e54e1c5e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032147Z:d4c17054-0afd-498e-8182-af86e54e1c5e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:21:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3b6c3066-3c0a-42fc-ae95-a3e2f21de5e9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9c70734a-7c83-40b6-8f21-36e755e2cb71" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032217Z:9c70734a-7c83-40b6-8f21-36e755e2cb71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:22:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "13c99d6d-4231-4f9c-bde8-a9d34279390a" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "78ddaba7-d9e4-4179-902c-7d9392548589" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032248Z:78ddaba7-d9e4-4179-902c-7d9392548589" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:22:48 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "79a35437-285f-4fc6-be64-339ae1f39302" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "1b386f6d-39e6-4365-8473-b43c058b77aa" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032319Z:1b386f6d-39e6-4365-8473-b43c058b77aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:23:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5f9ced66-2338-4449-acca-10d567b83a29" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0c56cd82-cf40-40e4-94ee-a61f5b8d8634" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032350Z:0c56cd82-cf40-40e4-94ee-a61f5b8d8634" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:23:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5e35e81f-2d12-41c2-b590-936716397c06" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "17ca8f8a-b5ca-4567-a9d7-d55876a5d0e2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032421Z:17ca8f8a-b5ca-4567-a9d7-d55876a5d0e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:24:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7320d300-c21e-4099-bcd9-728baa3779ae" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "283e0bcc-9ed9-49a9-892d-88f5d0338cc0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032451Z:283e0bcc-9ed9-49a9-892d-88f5d0338cc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:24:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "909dd290-aa42-451d-8c3c-65c341921aa8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5a5312e7-2366-47c1-9707-3821de380377" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032522Z:5a5312e7-2366-47c1-9707-3821de380377" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:25:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bda0cf23-3281-4965-8950-868446a3e8d8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "67717814-1030-48f0-9779-e1f2764b628f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032552Z:67717814-1030-48f0-9779-e1f2764b628f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:25:52 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5e53e573-fc9b-4c6d-a7f8-331badd67b0b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d727b7ef-2903-430e-80af-e2f49a3ceecc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032623Z:d727b7ef-2903-430e-80af-e2f49a3ceecc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:26:22 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "57e17019-6ae6-4566-afdf-3b3b71ac8bc0" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "723dd7c1-ed6b-4820-9772-94bd44313d47" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032654Z:723dd7c1-ed6b-4820-9772-94bd44313d47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:26:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a52adadf-8f90-48e9-857d-e627c373c233" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0371dc89-8aa5-40fc-8ae9-3ffa4d266de0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032724Z:0371dc89-8aa5-40fc-8ae9-3ffa4d266de0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:27:24 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "10259337-0d0d-481b-9c2d-c88a0cf5158d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "68fbd973-7ad8-4be5-b2db-bc823da74112" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032755Z:68fbd973-7ad8-4be5-b2db-bc823da74112" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:27:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6c7cde91-1fda-4920-901e-f26ddc8e5251" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "65b4ecd3-c508-481a-9ad4-062e52401933" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032826Z:65b4ecd3-c508-481a-9ad4-062e52401933" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:28:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8b5992c8-0d8b-49c7-a181-ce777111d83e" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "2de4dd0e-0c83-42a7-8d25-7ccb31c8e373" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032857Z:2de4dd0e-0c83-42a7-8d25-7ccb31c8e373" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:28:56 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0914c506-a525-401b-8434-3dbdbf9b127f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "ad12401a-937f-46d9-8a83-e5852ce22c24" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032927Z:ad12401a-937f-46d9-8a83-e5852ce22c24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:29:26 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1db9a2c1-f9b5-469d-921a-30f0f07c8483" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b75b8ea9-849c-4ac2-a874-4db404604ad5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "ca19ce5a-3520-445c-8ddc-048984728786" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032928Z:ca19ce5a-3520-445c-8ddc-048984728786" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:29:27 GMT" - ], - "Content-Length": [ - "2174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500\",\r\n \"name\": \"hdi-ps-test3500\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c9710b38-7b97-426d-8044-9669ade40be6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"91f7303aa85b480292409fa5188b3a67\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-07T03:18:41.993\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3500-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3500.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest8508.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.Storage/storageAccounts/storagepstest8508\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3500\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3363/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test2872?api-version=2021-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0Mjg3Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23ae79b0-71c4-4738-a61c-882062114bba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "77698001-9795-4956-85d7-2d41bb8d1173" - ], - "x-ms-correlation-request-id": [ - "77698001-9795-4956-85d7-2d41bb8d1173" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032928Z:77698001-9795-4956-85d7-2d41bb8d1173" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:29:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "251" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.OperationalInsights/workspaces/workspace-ps-test2872' under resource group 'group-ps-test3363' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3363/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test2872?api-version=2021-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0Mjg3Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23ae79b0-71c4-4738-a61c-882062114bba" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "136" - ] - }, - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"features\": {}\r\n },\r\n \"tags\": {},\r\n \"location\": \"East US\"\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test2872?api-version=2021-12-01-preview" - ], - "Request-Context": [ - "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "api-supported-versions": [ - "2021-12-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "4533e450-d79e-4d08-bb8e-ef63ab045bcc" - ], - "x-ms-correlation-request-id": [ - "4533e450-d79e-4d08-bb8e-ef63ab045bcc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T032931Z:4533e450-d79e-4d08-bb8e-ef63ab045bcc" - ], - "Date": [ - "Fri, 07 Apr 2023 03:29:30 GMT" - ], - "Content-Length": [ - "859" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"customerId\": \"041e7342-5580-4804-8c3d-751d149b6c60\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"PerNode\",\r\n \"lastSkuUpdate\": \"2023-04-07T03:29:31.0596099Z\"\r\n },\r\n \"retentionInDays\": 31,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": \"2023-04-07T22:00:00Z\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"2023-04-07T03:29:31.0596099Z\",\r\n \"modifiedDate\": \"2023-04-07T03:29:31.0596099Z\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test2872\",\r\n \"name\": \"workspace-ps-test2872\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test2872?api-version=2021-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0Mjg3Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23ae79b0-71c4-4738-a61c-882062114bba" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Request-Context": [ - "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "api-supported-versions": [ - "2021-12-01-preview" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "b07f8d64-e227-446a-9df6-76804571a307" - ], - "x-ms-correlation-request-id": [ - "b07f8d64-e227-446a-9df6-76804571a307" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T033001Z:b07f8d64-e227-446a-9df6-76804571a307" - ], - "Date": [ - "Fri, 07 Apr 2023 03:30:01 GMT" - ], - "Content-Length": [ - "860" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"customerId\": \"041e7342-5580-4804-8c3d-751d149b6c60\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"PerNode\",\r\n \"lastSkuUpdate\": \"2023-04-07T03:29:31.0596099Z\"\r\n },\r\n \"retentionInDays\": 31,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": \"2023-04-07T22:00:00Z\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"2023-04-07T03:29:31.0596099Z\",\r\n \"modifiedDate\": \"2023-04-07T03:29:31.0596099Z\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test2872\",\r\n \"name\": \"workspace-ps-test2872\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3363/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test2872/sharedKeys?api-version=2020-08-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0Mjg3Mi9zaGFyZWRLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5043c584-c709-4f92-a959-edaf6ec74be0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Request-Context": [ - "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "api-supported-versions": [ - "2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Access-Control-Allow-Origin": [ - "*" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "9c2e77cb-3184-4ce9-8b23-57e3ae69ff09" - ], - "x-ms-correlation-request-id": [ - "9c2e77cb-3184-4ce9-8b23-57e3ae69ff09" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T033002Z:9c2e77cb-3184-4ce9-8b23-57e3ae69ff09" - ], - "Date": [ - "Fri, 07 Apr 2023 03:30:02 GMT" - ], - "Content-Length": [ - "223" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"primarySharedKey\": \"sF/2TSqle60hDetLxsQFPSWC5EKeM2V57R8U+JzhykOoAqdToSC9m0HSo+uMlIG9uHct884JDocA3KXuyGvABQ==\",\r\n \"secondarySharedKey\": \"m0GtCQiYi405OTCmdhH3LNI70uhTLU/VD+hd7OOqG/H8B2XvF+macK90J+cXGJR753NIhrIHV+1GuOyHbfNISw==\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/extensions/azureMonitor?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c664f74-0620-464c-ba06-da711b8a4531" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "573269e3-18b7-475d-908e-f523352925c4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7a10eac4-8e1e-4300-a22b-55184443e75b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T033003Z:7a10eac4-8e1e-4300-a22b-55184443e75b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:30:02 GMT" - ], - "Content-Length": [ - "53" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": false,\r\n \"workspaceId\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/extensions/azureMonitor?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e26f83b-b570-4085-a9a9-0468fd4312fe" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eca9402f-bf46-4397-86b8-da1d2a1e4678" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8900e6e6-0eda-4dbf-91ca-af9b49b2b432" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T033107Z:8900e6e6-0eda-4dbf-91ca-af9b49b2b432" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:31:06 GMT" - ], - "Content-Length": [ - "86" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": true,\r\n \"workspaceId\": \"041e7342-5580-4804-8c3d-751d149b6c60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/extensions/azureMonitor?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fdde9e50-bce8-4b07-a2b6-f4fbb4b9b408" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bc9bfc5d-ec6c-44a7-a00d-377980c2f5e1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e1a4725a-7e23-436c-bed4-4618571af04d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033108Z:e1a4725a-7e23-436c-bed4-4618571af04d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:31:07 GMT" - ], - "Content-Length": [ - "86" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": true,\r\n \"workspaceId\": \"041e7342-5580-4804-8c3d-751d149b6c60\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/extensions/azureMonitor?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "164bdf36-bf47-47fc-b3ad-047667eb2749" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "53df7acc-0daa-4f3c-8717-d43ce473c326" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a3d80c67-2491-4948-805c-a3f14da570d5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033212Z:a3d80c67-2491-4948-805c-a3f14da570d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:32:12 GMT" - ], - "Content-Length": [ - "53" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": false,\r\n \"workspaceId\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/extensions/azureMonitor?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e26f83b-b570-4085-a9a9-0468fd4312fe" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "170" - ] - }, - "RequestBody": "{\r\n \"workspaceId\": \"041e7342-5580-4804-8c3d-751d149b6c60\",\r\n \"primaryKey\": \"Sanitized\"\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/operationresults/a2411021-7ac3-444c-b95d-72786ddb9a41-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/a2411021-7ac3-444c-b95d-72786ddb9a41-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "2dd22494-c0f0-4c35-b174-a1af9c97d4e1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a98e2d26-ddec-491f-b1a5-3d84123dfc44" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T033005Z:a98e2d26-ddec-491f-b1a5-3d84123dfc44" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:30:05 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/a2411021-7ac3-444c-b95d-72786ddb9a41-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9hMjQxMTAyMS03YWMzLTQ0NGMtYjk1ZC03Mjc4NmRkYjlhNDEtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5e26f83b-b570-4085-a9a9-0468fd4312fe" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f85884b3-c3bb-4fce-8f53-24b7da6f9738" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "39b4c953-1a13-4f86-b9a6-5c6bde57bbf5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230407T033106Z:39b4c953-1a13-4f86-b9a6-5c6bde57bbf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:31:06 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/extensions/azureMonitor?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9leHRlbnNpb25zL2F6dXJlTW9uaXRvcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a8293259-cc95-4d1a-ac3d-a019a81e0125" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/operationresults/d7142ef0-2b9a-485f-ad31-0b1cc47717e5-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/d7142ef0-2b9a-485f-ad31-0b1cc47717e5-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "8129e43f-ea48-4e88-8b3d-aba6d165b10e" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6c4904c1-597b-43e5-80f0-5e75c4fd1205" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033110Z:6c4904c1-597b-43e5-80f0-5e75c4fd1205" + "x-ms-request-id": [ + "941da5be-ce31-4670-88bf-5680e333e63f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:31:10 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/azureasyncoperations/d7142ef0-2b9a-485f-ad31-0b1cc47717e5-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9henVyZWFzeW5jb3BlcmF0aW9ucy9kNzE0MmVmMC0yYjlhLTQ4NWYtYWQzMS0wYjFjYzQ3NzE3ZTUtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a8293259-cc95-4d1a-ac3d-a019a81e0125" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e6543b97-6eb4-4d50-9753-78965cded889" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "51015327-3f3e-46ab-b24f-72d0694f3322" - ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033211Z:51015327-3f3e-46ab-b24f-72d0694f3322" + "x-ms-correlation-request-id": [ + "bb090744-b67e-43d9-8b14-7a7070e9054e" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREASOUTH:20230724T032245Z:bb090744-b67e-43d9-8b14-7a7070e9054e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:32:10 GMT" + "Mon, 24 Jul 2023 03:22:45 GMT" ], "Content-Length": [ - "22" + "1384" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8349/providers/Microsoft.Storage/storageAccounts/storagepstest4794\",\r\n \"name\": \"storagepstest4794\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T03:22:25.848221Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T03:22:25.848221Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-24T03:22:25.5200967Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest4794.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest4794.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest4794.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest4794.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest4794-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest4794-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest4794-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500/operationresults/d7142ef0-2b9a-485f-ad31-0b1cc47717e5-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMC9vcGVyYXRpb25yZXN1bHRzL2Q3MTQyZWYwLTJiOWEtNDg1Zi1hZDMxLTBiMWNjNDc3MTdlNS0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8349/providers/Microsoft.Storage/storageAccounts/storagepstest4794/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDQ3OTQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "a8293259-cc95-4d1a-ac3d-a019a81e0125" + "ae10864d-fb00-4963-84d1-99793e95beb7" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2709,49 +225,49 @@ "no-cache" ], "x-ms-request-id": [ - "2323b433-516a-416a-afb2-47646558f30b" - ], - "x-ms-hdi-served-by": [ - "eastus" + "9a999bce-4400-44f7-8bc1-72bc199c64a9" ], - "x-ms-correlation-request-id": [ - "43d0456a-e48b-4372-bc60-e825580088a2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033211Z:43d0456a-e48b-4372-bc60-e825580088a2" + "x-ms-correlation-request-id": [ + "d6b7f7f4-32ca-44e2-847c-8d981a0bb611" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREASOUTH:20230724T032247Z:d6b7f7f4-32ca-44e2-847c-8d981a0bb611" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:32:11 GMT" + "Mon, 24 Jul 2023 03:22:47 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"key==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"/key==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8349/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test7582?api-version=2021-12-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NzU4Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8cb8ed12-509b-48a2-852e-9aa92083df79" + "25d946d7-674f-458b-ba20-4dbdf7695414" ], "Accept-Language": [ "en-US" @@ -2759,8 +275,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" ] }, "RequestBody": "", @@ -2771,33 +287,17 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "2273df42-e035-465e-90f0-43e9afbe44ae", - "3e1d4237-511e-4d52-8949-0595718b06eb", - "638449d0-e9fa-4f7b-b94b-ad62eb8d78cf", - "ae2cd2ab-6191-4b7b-ae61-12516e9323f9", - "e3e1e739-834b-47cb-bd9e-e94e5faa1c90", - "8b8362bd-a536-4e59-88d0-3bd2a2617e7e", - "66aa6928-0f3b-430b-88b1-5b36c4d5e212", - "11441c42-d0e5-4717-a471-207f6d11c4d0", - "087a59d7-53fc-45fc-8a0d-85ca6ce838f8", - "b563b236-8e5d-43a3-9ec4-68f4e1751625", - "8a01fcd1-64e9-4f6f-b3b5-95e44ed98894", - "62f020b5-2047-4c10-a2b4-bddefa38fa53", - "a5e02063-b0bc-40fc-aaa6-a1dd6d5f00e9", - "bdfd79ec-b2c9-42c2-a4f7-773ccecf0a1c" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "c6672697-9f53-41d6-b322-ec7ed4775997" + "4dcacbfd-6a36-45d6-b7f7-f9e413d1b8d3" ], "x-ms-correlation-request-id": [ - "c6672697-9f53-41d6-b322-ec7ed4775997" + "4dcacbfd-6a36-45d6-b7f7-f9e413d1b8d3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033219Z:c6672697-9f53-41d6-b322-ec7ed4775997" + "KOREASOUTH:20230724T033708Z:4dcacbfd-6a36-45d6-b7f7-f9e413d1b8d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2806,7 +306,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:32:18 GMT" + "Mon, 24 Jul 2023 03:37:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2815,19 +315,19 @@ "-1" ], "Content-Length": [ - "280293" + "251" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.HDInsight/clusters/xinli1debugipsec\",\r\n \"name\": \"xinli1debugipsec\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"263aad4e-6765-495a-9ba6-c5edab28ef5a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a836521cad934fc89c517a90ae892a7a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-27T07:38:27.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1debugiphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.Storage/storageAccounts/xinli1debugiphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1debugipsec-2023-03-27t07-37-02-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.HDInsight/clusters/test-denyinbound\",\r\n \"name\": \"test-denyinbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Australia East\",\r\n \"etag\": \"17ac0a46-8e67-414f-bb3c-ca5c4bd35712\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6d2976b47ed470d9b5f11bb7d81db2b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-29T11:13:22.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdenyinbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Storage/storageAccounts/testdenyinbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-denyinbound-2023-03-29t11-04-30-897z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-outbount-cvrio4\",\r\n \"name\": \"hadoop-outbount-cvrio4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"b577a3fd-3386-4a5e-9149-a8ae7a809d12\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6fcf0aa36cce419da9a9e7222cf4533c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T12:55:12.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"192.168.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-outbount-cvrio4-2023-02-27t12-53-32-920z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-sentinel\",\r\n \"name\": \"hadoop-sentinel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"84ed899b-d6f7-481e-9976-f5859cc7ddce\",\r\n \"tags\": {\r\n \"SENTINAL\": \"DONTDELETE\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"053fc6fe2d3a4196b4ed8c5845b6a297\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-02T13:28:33.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-sentinel-2023-01-02t13-26-06-000z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdptestcluster1\",\r\n \"name\": \"hdptestcluster1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"6294e7eb-d942-4da0-bb22-69ac8aa8ab10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"711698d20f7d4e559b55785590fdc382\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T20:31:14.29\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdptestclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdptestclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdptestcluster1-2023-02-16t20-29-01-114z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.HDInsight/clusters/srinihadooptest\",\r\n \"name\": \"srinihadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"6799f8b5-f6b7-490b-bfce-c8e96c0a69d8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4a97d33a74354cb8b505314852fd67dc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T06:09:38.023\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinihadooptehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.Storage/storageAccounts/srinihadooptehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinihadooptest-2023-04-03t06-06-59-470z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumanatahivetest\",\r\n \"name\": \"sumanatahivetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"e0ab8abe-ea66-4786-a963-b8bd59cd68f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0752c11287947f6ad407dc35ef9f0a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T10:25:01.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 42\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumanatahivetest-2023-02-23t10-13-41-228z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantahadooptest\",\r\n \"name\": \"sumantahadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"3e2ef5dc-b06c-49f1-a0f5-1064c87c2904\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a3a347bee65443c5b4ffc02c295dca36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T06:32:06.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantahadooptestcluste-2023-03-24t06-28-54-846z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantatestsparkcluster\",\r\n \"name\": \"sumantatestsparkcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"eadbad16-940e-4ba1-8d10-e35b31b3038c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7571860162e244c9ac5f369c6a6182bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-26T02:19:04.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantatestsparkcluster-2023-02-26t02-15-03-734z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryahadoop\",\r\n \"name\": \"suryahadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"efc66412-384f-478b-98b8-b9c5370b1a9e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b6b32d28d9e4bcf81e16dcceb9d7c90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T09:31:39.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryahadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryahadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryahadoop-2023-02-16t09-30-23-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryaspark\",\r\n \"name\": \"suryaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"4e2c5b28-0661-4614-9557-60741cb699d4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f34179e0af574bd990a4a80e0f850420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T09:51:40.6\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryaspark-2023-02-23t09-49-41-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.HDInsight/clusters/andarmod-march2023\",\r\n \"name\": \"andarmod-march2023\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58889b01-8efb-45b7-a3da-3c1e8eea158f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b47d639b35f94be4955cc2dec8b2320d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-07T16:54:08.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodmarchhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.Storage/storageAccounts/andarmodmarchhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-march2023-2023-03-07t16-51-41-821z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyanipsectest1\",\r\n \"name\": \"chaoyanipsectest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e788daa3-aa02-49d3-b558-29403e44da93\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.5.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2207131812.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"367ac0f996a0421bbce329925e291b05\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-11T08:43:11.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyanipsecthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyanipsecthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyanipsectest-2022-08-11t08-39-02-672z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyantesting1\",\r\n \"name\": \"chaoyantesting1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"29167e66-afe2-4c5f-b8b7-00b165d9a72e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"43fb4c0684964cc09e2bb85da780e87b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-05-19T05:33:22.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyantestinhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyantestinhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyantesting-2022-05-19t05-31-45-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalhbasecluster\",\r\n \"name\": \"faisalhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c2d260b3-7c88-4293-a197-3bd01ba5cba9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"fdd6f2f04e214787a91ab03d8c70e43c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-09T18:59:29.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"Execution of the following scripts failed :- Custom\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalhbasecluster-2023-02-09t18-57-54-885z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalkafkacluster\",\r\n \"name\": \"faisalkafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6a22e8d4-9a64-4f7c-81e0-dbc10fdc4396\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"f96f014c44104e059b9b76cdf5786212\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:32:47.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalkafkaclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalkafkaclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalkafkaclist-2023-02-15t17-31-20-101z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsparkthreedotone\",\r\n \"name\": \"faisalsparkthreedotone\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"28e18c5f-d479-4420-a009-f239f0866d77\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"08a08b13feb040f695fe823f9cd4ce0b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T15:01:25.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsparkthhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsparkthhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsparkthreedotone-2023-02-16t15-00-02-589z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprk3dot1\",\r\n \"name\": \"faisalsprk3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3e344fb9-ae16-4de5-9d8a-88f3492631f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b19b209e520840a798c9fdf0853ca32d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-14T17:03:17.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprk3dohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprk3dohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprk3do-2023-02-14t17-01-00-509z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprkcluster3dot1\",\r\n \"name\": \"faisalsprkcluster3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"293ccb46-de93-4a32-a7db-1b7e7354530b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"40de045ed14244048ed41c11aa55ce6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:31:11.627\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprkcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprkcluster-2023-02-15t17-29-17-755z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.HDInsight/clusters/for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"name\": \"for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fbca8ad-f6d9-459a-85de-2d41bbc13acd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"218204ad46f5479f8700266ad08536ab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T02:22:59.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"forhditestspahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.Storage/storageAccounts/forhditestspahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"forhdi-test-spark-24-do-2023-02-15t02-20-51-216z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500\",\r\n \"name\": \"hdi-ps-test3500\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c9710b38-7b97-426d-8044-9669ade40be6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"91f7303aa85b480292409fa5188b3a67\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-07T03:18:41.993\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3500-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3500.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest8508.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.Storage/storageAccounts/storagepstest8508\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3500\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.HDInsight/clusters/hdi-spark-test-eastus\",\r\n \"name\": \"hdi-spark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"de91a5d7-3f91-49ad-a023-99cceacd47f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"46ee674f530e4c6eac0bf40ca8fa6b13\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T18:25:18.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-spark-test-eastus-2023-02-23t18-23-27-300z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.HDInsight/clusters/jacky-spart-cluster\",\r\n \"name\": \"jacky-spart-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f93e581f-303e-40f6-aa2e-e2af037d2015\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ed0cbe2a53f6451a9a9a51943b3b7e4c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 1,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:34:56.1\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jackyspartcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.Storage/storageAccounts/jackyspartcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jacky-spart-cluster-2023-03-10t07-31-05-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/kafkajartest\",\r\n \"name\": \"kafkajartest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5dba8150-35d1-4431-9a33-1f6e645fb976\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"afa6e9ba6cb04b3dbb487637e4b4971c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T15:56:24.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafkajartesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/kafkajartesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafkajartest-2023-03-24t15-54-14-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/rampuvhbasecluster\",\r\n \"name\": \"rampuvhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"112945a7-a3d1-4600-8ae7-1d8f03309d10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"cce431c503424ea5a3c0d103329b7542\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-17T22:57:31.78\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rampuvhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/rampuvhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"rampuvhbasecluster-2023-01-17t22-44-44-409z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.HDInsight/clusters/shankarhadooptestcluster\",\r\n \"name\": \"shankarhadooptestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06e26256-25d4-4fba-9648-30f7078f0840\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c164b1edd07f4b3fbb0787d101784942\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T01:28:16.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shankarhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shankarhadoop-2023-03-23t01-23-49-690z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n },\r\n {\r\n \"name\": \"shankarhadoophdistorage2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark2d4\",\r\n \"name\": \"spark2d4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1153c11a-2a85-46e7-a734-52015dc5868d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c883f1ec21bc4c849523971654062efd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T07:42:07.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark2d4hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark2d4hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark2d4-2023-02-15t07-39-53-493z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark3d1\",\r\n \"name\": \"spark3d1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4684704b-9b54-4c86-af1c-7ef79b87b2aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7e791962c38f418b9474926b349621df\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-08T09:41:23.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark3d1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark3d1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark3d1-2023-03-08t09-39-29-001z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.HDInsight/clusters/sparkclustertest\",\r\n \"name\": \"sparkclustertest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8b31425f-33d6-4fb4-a949-8ecf8ab6931b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a49afaa3cee6473ea18436341998a8ca\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T05:40:39.997\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparkclusterteststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.Storage/storageAccounts/sparkclusterteststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparkclustertest-2023-02-20t05-37-29-162z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/sparktezviewtesting\",\r\n \"name\": \"sparktezviewtesting\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"51679a92-9088-4c04-a123-98b0d47a2f1f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"52575b0c9da14a91b6b0164b881fc0bd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T21:40:20.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparktezviewthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/sparktezviewthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparktezviewtesting-2023-04-03t21-38-23-344z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.HDInsight/clusters/sultan-hdi-cluster-1\",\r\n \"name\": \"sultan-hdi-cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8c758461-3e41-4c18-a9f3-5ce77e05a7bf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"63513e3e784441259bb73ad58c602241\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T15:51:03.267\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sultanhdiclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Storage/storageAccounts/sultanhdiclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sultan-hdi-cluster-2023-04-03t15-44-34-333z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.HDInsight/clusters/testhadoopv-rchandekar\",\r\n \"name\": \"testhadoopv-rchandekar\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"517c95d3-0333-442e-90fc-49c3aa0474c5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbdf8584bd7146bfa881a9f6d0edb126\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-19T09:11:15.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhadoopvrchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.Storage/storageAccounts/testhadoopvrchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhadoopv-rchandekar-2023-02-19t09-08-45-240z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/testsprk1\",\r\n \"name\": \"testsprk1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"80c39751-b509-48cc-b33b-f426446131c6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"00161d115cb043148e4ee70f3480841a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-22T15:55:55.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsprk1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/testsprk1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testsprk1-2023-03-22t15-53-40-199z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut_res_group_extremelengthextremelengthextremelengthextremelengthextremelengthextremelen/providers/Microsoft.HDInsight/clusters/wut-cluster-extremelengthextremelengt1\",\r\n \"name\": \"wut-cluster-extremelengthextremelengt1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ef9588d7-7391-4786-ac73-8a3bd685c737\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3438ce92023a43bfb69f13dd19abe1a1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-03T07:59:34.263\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-cluster-extremeleng-2023-03-03t07-50-04-213z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi1\",\r\n \"name\": \"wut-msi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"cbe06749-73db-43d4-bc7d-c659f66fae76\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3ab1d1b9f8f74bfe9e47b7f47bb2d484\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T10:21:20.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi1-2023-02-16t10-18-25-176z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi-with-disk\",\r\n \"name\": \"wut-msi-with-disk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"abce6322-b4bf-459b-8bf2-76d00b710b0b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"463aa4295be340609178d8503f319c5e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T07:17:39.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi-with-disk-2023-02-20t07-16-09-847z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1adls04191\",\r\n \"name\": \"x1adls04191\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b07b7393-e919-4fa3-a498-53a294c6c378\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"8e19fc8c328c4078aeaee5eead0dfba3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-04-19T05:40:17.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1adlsgen20419.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1adlsgen20419\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/x1usermsi0924\",\r\n \"key\": null,\r\n \"fileSystem\": \"x1adls04191fs\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/microsoft.managedidentity/userassignedidentities/x1usermsi0924\": {\r\n \"principalId\": \"048a9639-b7e1-4671-b9aa-2bab056c5b3b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.HDInsight/clusters/xinli1agentdebug\",\r\n \"name\": \"xinli1agentdebug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f2a8f840-0c8b-4588-af98-c0471c75f525\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e231aeff71145208dfd23b216e5167c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-28T02:48:54.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.39.1.25\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1agentdehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Storage/storageAccounts/xinli1agentdehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1agentdebug-2023-02-28t02-46-13-138z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-ssh-test\",\r\n \"name\": \"yalu-ssh-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"11482072-35bb-4f70-8c7c-d83fbd365235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"535fba725345441f84453158ed58bb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-03-28T05:51:27.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusshtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yalusshtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-ssh-test-2022-03-28t05-50-12-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yaluversiontest\",\r\n \"name\": \"yaluversiontest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8a084b25-3fdf-41dc-8524-ff314d5736eb\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2207131812.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"165dba2239b4435fb837bbb28cd94562\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-26T04:01:17.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluversiontehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluversiontehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yaluversiontest-2022-08-26t03-59-45-628z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweiuseprod\",\r\n \"name\": \"ziweiuseprod\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"a1c924a7-ef70-424c-a707-3acea34ed284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f5ed2b902a8c4148aaa06b2083c5fcf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-20T13:26:43.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweiuseprodhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweiuseprodhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweiuseprod-2022-02-20\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdihiveinteractivequery\",\r\n \"name\": \"hdihiveinteractivequery\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"e0406da8-4e88-47be-9046-bd73cc55730a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b630111eea894ea2b83b9927fd696708\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-06T19:40:13.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 18\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdihiveinterahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdihiveinterahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdihiveinteractivequery-2023-01-06t19-33-23-190z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.HDInsight/clusters/jairokafkacluster\",\r\n \"name\": \"jairokafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"72468a3d-3ff2-41a8-a319-0380807b9fda\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e4d6eaf7f2a84e9c8f73ecf5f916659c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T17:58:43.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jairokafkacluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.Storage/storageAccounts/jairokafkacluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jairokafkacluster-2023-02-27t17-54-29-913z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/zzzz-shangwei-test-pe\",\r\n \"name\": \"zzzz-shangwei-test-pe\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bd656217-7df4-4dbd-8767-deb0aa1007b5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2208310943.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"01bc6a206aea46a0844a6ba5e4c1e4ce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-09-28T11:53:42.887\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-test-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"asd-shangwei-test-pe-2022-09-28t11-39-57-881z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-test-msi\": {\r\n \"principalId\": \"2f5a5662-86b4-4c5f-a3b8-eba4db9b5ee0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.HDInsight/clusters/hiveserverinteractivetestfeb20\",\r\n \"name\": \"hiveserverinteractivetestfeb20\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"6cabab4b-9e77-4a77-b9f6-e36fbb52d701\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f3518a9df252426a87aaabe174d34549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T04:55:42.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hiveserverinthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.Storage/storageAccounts/hiveserverinthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hiveserverinte-2023-02-20t04-52-17-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.HDInsight/clusters/shangwei-poc-hdi\",\r\n \"name\": \"shangwei-poc-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4dc7b507-2bf7-47dd-baf5-fe0fd82a7718\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e97453096a1423fae7bf95c28faf715\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T13:24:27.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipochdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Storage/storageAccounts/shangweipochdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-poc-hdi-2023-02-15t13-22-36-476z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.HDInsight/clusters/test-outbound\",\r\n \"name\": \"test-outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"6feb5fe3-fa25-4116-b17b-4d0771b02ff3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"aa331a83baf348149ce4f24b5ab04f7e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-14T09:42:47.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.3.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsheinoutbound.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Storage/storageAccounts/testsheinoutbound\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-outbound-2023-03-14t09-36-58-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweinewregion\",\r\n \"name\": \"ziweinewregion\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany North\",\r\n \"etag\": \"fcd8e6b6-92bf-4c33-a1ae-7fddaec7a588\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b4a777151b6a4402bc22c9d9224d01a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-06-09T06:27:54.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweinewregiohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweinewregiohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweinewregion-2022-06-09t06-26-13-110z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip1\",\r\n \"name\": \"wuttesttip1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"c643f24b-ab3b-446a-a944-cc22976b6d5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6878300ba5904fee8d37ea4c49fd657e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T08:05:36.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220830tip1\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip2\",\r\n \"name\": \"wuttesttip2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c6a1e318-6b1a-4ee7-9678-3c45a460054a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5022c17e86c04151b52efa226c781236\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T09:04:25.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220831tip2\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestec2023021501\",\r\n \"name\": \"zzytestec2023021501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"f80298a0-42c9-45fb-bcbd-c21949a368e6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302140238.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab068287b1c54e2e86f3cd009a2994f7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-02-15T05:51:53.337\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestec2023hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestec2023hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestec20230214-2023-02-15t05-48-55-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytesteccert003\",\r\n \"name\": \"zzytesteccert003\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"717d837f-3ba3-4b6a-8316-488824d78c8a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"926003a85ef746a79582414d9d0f8aef\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-01-30T08:53:33.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesteccerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesteccerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytesteccert003-2023-01-30t08-52-19-685z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.HDInsight/clusters/alaw-hadoop\",\r\n \"name\": \"alaw-hadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"a644024e-45da-4b23-8347-7ccadb095d46\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"acf2f5f3b77d49eda85a0d2ba1854d3e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-02T02:05:48.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"alawhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.Storage/storageAccounts/alawhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"alaw-hadoop-2023-03-02t02-05-00-094z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy12testclimsgraph\",\r\n \"name\": \"zzy12testclimsgraph\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b1954f3b-435e-4d0e-8129-4e82dd07e189\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"30cbd2b68eaf4d899a1f88852ae30d0a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-05-18T04:00:46.723\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://lanjuntesthdihdistorage.blob.core.windows.net/ssh/changecredentials.sh. Exception message: Script URI cannot be retrieved correctly. HTTP Status code: Conflict.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy12testclimsgraph\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-01\",\r\n \"name\": \"shiyi-pl-hadoop-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29990d6a-6caa-4b11-82f6-30fea35a6fc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c2e3babae5ec4ee08a36c2c90894eced\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:41:45.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 8\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa01.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa01\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-01\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-02\",\r\n \"name\": \"shiyi-pl-hadoop-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"fdf7f0f4-800a-45fc-8b4f-5357b8b1c3d2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2fd6536c8ce148bda284f73d7444d400\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f8\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:46:03.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-03\",\r\n \"name\": \"shiyi-pl-hadoop-03\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"3b96fb85-fa13-40f2-8abe-901ca94902e0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"11f0972bacd44965a373acd717924ecd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f16\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:14:35.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa03.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa03\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-03\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-04\",\r\n \"name\": \"shiyi-pl-hadoop-04\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"83d4b2bd-a438-4884-b578-07fd80427e3d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c1fc40e15a2d41dfab258e833e6ba850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:16:52.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa04.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa04\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-04\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-05\",\r\n \"name\": \"shiyi-pl-hadoop-05\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"c4b9f731-3773-4ff7-b484-5b0ff3394ff7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c60d7a208817420d8320be7c677ab2f2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:24:54.443\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 128\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa05.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa05\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-05\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-06\",\r\n \"name\": \"shiyi-pl-hadoop-06\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"302f52c5-59fc-4636-938d-d491fe9920fc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8247d20bc8e448279746c2b62ce805b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:19:35.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa06.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa06\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-06\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-07\",\r\n \"name\": \"shiyi-pl-hadoop-07\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f4ef091a-a24c-417c-9962-bcfc8b02de8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"239c19a2c1554ed7862044e0e4703f22\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:37:41.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa07.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa07\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-07\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-08\",\r\n \"name\": \"shiyi-pl-hadoop-08\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f76467ac-9a10-4174-b85a-e96845254047\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"d8fda12bd8b444b186f37dea68622d31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:39:46.89\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa08.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa08\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-08\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-09\",\r\n \"name\": \"shiyi-pl-hadoop-09\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29bfd3d6-d1bb-4b99-9bce-f4c149495311\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b0602bd423544d729d56f6dd50a5fe78\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:15.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa09.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa09\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-09\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-10\",\r\n \"name\": \"shiyi-pl-hadoop-10\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8e41f979-734a-47e5-a6a6-ef6a80a2a9df\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1b548cbfb8b24d46a360df3d6ccf07c8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:29.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa10.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa10\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-10\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-11\",\r\n \"name\": \"shiyi-pl-hadoop-11\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"d6696882-f688-4e87-bd74-b7e51b809d79\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4c8e5b20edca4aef98d5590715a9dd2c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:10.573\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa11.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa11\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-11\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-12\",\r\n \"name\": \"shiyi-pl-hadoop-12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7620fa29-cc62-4974-8540-bdfa2dc5f878\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9d2d4967c7a14a22ae8718988b6caa2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:25.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa12.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa12\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-12\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hbase-01\",\r\n \"name\": \"shiyi-pl-hbase-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8db0b47e-ec70-47c0-bfc8-1dec22d35b87\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"3b5e5a78385a4c0da678b1d30c0ca0b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:03:24.73\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 22\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhbase0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.Storage/storageAccounts/shiyiplhbase0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hbase-01-2023-03-20t02-57-30-182z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.HDInsight/clusters/shiyi-pl-hdp-3\",\r\n \"name\": \"shiyi-pl-hdp-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7d83c57b-727d-4610-b944-76bed3845d6e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"75d7946e29ae42c0b5be6919c1569cf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:30:56.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhdp3hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.Storage/storageAccounts/shiyiplhdp3hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hdp-3-2023-03-10t07-28-45-657z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hive-01\",\r\n \"name\": \"shiyi-pl-hive-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"1614b7e9-b8f2-439e-a31c-a9c568a69f39\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"e7f7e90b1ab34b6a8ab3d5475f3f3eb6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:10:23.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhive01hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.Storage/storageAccounts/shiyiplhive01hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hive-01-2023-03-20t03-06-54-850z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-01\",\r\n \"name\": \"shiyi-pl-kafka-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8f76ee5e-304f-4833-a2a0-725661b34f13\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"c8f68a7bb80b4f7b9dc5c2033af2da38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T05:44:19.98\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafka0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.Storage/storageAccounts/shiyiplkafka0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-01-2023-03-20t05-41-36-217z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-02\",\r\n \"name\": \"shiyi-pl-kafka-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"014feb11-1c70-4766-85b7-91f10423540d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"kafka\",\r\n \"componentVersion\": {\r\n \"kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"45d348febd6440b89502cb184a0ce201\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T09:33:10.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafkasa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.Storage/storageAccounts/shiyiplkafkasa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.OperationalInsights/workspaces/workspace-ps-test7582' under resource group 'group-ps-test8349' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3363/providers/Microsoft.HDInsight/clusters/hdi-ps-test3500?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzUwMD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8349/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test7582?api-version=2021-12-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NzU4Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "8cb8ed12-509b-48a2-852e-9aa92083df79" + "25d946d7-674f-458b-ba20-4dbdf7695414" ], "Accept-Language": [ "en-US" @@ -2835,11 +335,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "136" ] }, - "RequestBody": "", + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"features\": {}\r\n },\r\n \"tags\": {},\r\n \"location\": \"East US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2848,64 +354,67 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/4023051c-890e-4358-943d-ef704a89ef9c-0-r?api-version=2021-06-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8349/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test7582?api-version=2021-12-01-preview" ], - "Retry-After": [ - "60" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/4023051c-890e-4358-943d-ef704a89ef9c-0-r?api-version=2021-06-01" + "Access-Control-Allow-Origin": [ + "*" ], - "x-ms-request-id": [ - "d3c0ab8a-b3ef-4baf-a49c-b9334c8ce911" + "Request-Context": [ + "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" ], - "x-ms-hdi-served-by": [ - "eastus" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-correlation-request-id": [ - "cbd5604a-c3a6-4ce9-b1ad-69fcf0d6b597" + "api-supported-versions": [ + "2021-12-01-preview" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033221Z:cbd5604a-c3a6-4ce9-b1ad-69fcf0d6b597" + "x-ms-request-id": [ + "aa3134a4-27d0-4aac-a1e6-a96d1208c350" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-correlation-request-id": [ + "aa3134a4-27d0-4aac-a1e6-a96d1208c350" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-routing-request-id": [ + "KOREASOUTH:20230724T033717Z:aa3134a4-27d0-4aac-a1e6-a96d1208c350" ], "Date": [ - "Fri, 07 Apr 2023 03:32:20 GMT" + "Mon, 24 Jul 2023 03:37:16 GMT" + ], + "Content-Length": [ + "859" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"properties\": {\r\n \"customerId\": \"f9f6e9e7-8de1-4bac-8a38-2846fbebda38\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"PerNode\",\r\n \"lastSkuUpdate\": \"2023-07-24T03:37:15.9500518Z\"\r\n },\r\n \"retentionInDays\": 31,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": \"2023-07-24T06:00:00Z\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"2023-07-24T03:37:15.9500518Z\",\r\n \"modifiedDate\": \"2023-07-24T03:37:15.9500518Z\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8349/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test7582\",\r\n \"name\": \"workspace-ps-test7582\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/4023051c-890e-4358-943d-ef704a89ef9c-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNDAyMzA1MWMtODkwZS00MzU4LTk0M2QtZWY3MDRhODllZjljLTAtcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8349/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test7582?api-version=2021-12-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NzU4Mj9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestHeaders": { "x-ms-client-request-id": [ - "8cb8ed12-509b-48a2-852e-9aa92083df79" + "25d946d7-674f-458b-ba20-4dbdf7695414" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" ] }, "RequestBody": "", @@ -2916,35 +425,41 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "2e234be5-918d-4798-bfff-85135dcf9a5e" - ], - "x-ms-hdi-served-by": [ - "eastus" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], - "x-ms-correlation-request-id": [ - "5fd36553-36db-49a3-9960-9c6b73e42742" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Request-Context": [ + "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033321Z:5fd36553-36db-49a3-9960-9c6b73e42742" + "api-supported-versions": [ + "2021-12-01-preview" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-request-id": [ + "766484c7-1c68-4349-8409-1fd0886fc3c2" + ], + "x-ms-correlation-request-id": [ + "766484c7-1c68-4349-8409-1fd0886fc3c2" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20230724T033747Z:766484c7-1c68-4349-8409-1fd0886fc3c2" ], "Date": [ - "Fri, 07 Apr 2023 03:33:21 GMT" + "Mon, 24 Jul 2023 03:37:47 GMT" ], "Content-Length": [ - "22" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2953,22 +468,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"customerId\": \"f9f6e9e7-8de1-4bac-8a38-2846fbebda38\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"PerNode\",\r\n \"lastSkuUpdate\": \"2023-07-24T03:37:15.9500518Z\"\r\n },\r\n \"retentionInDays\": 31,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": \"2023-07-24T06:00:00Z\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"2023-07-24T03:37:15.9500518Z\",\r\n \"modifiedDate\": \"2023-07-24T03:37:15.9500518Z\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8349/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test7582\",\r\n \"name\": \"workspace-ps-test7582\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/4023051c-890e-4358-943d-ef704a89ef9c-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy80MDIzMDUxYy04OTBlLTQzNTgtOTQzZC1lZjcwNGE4OWVmOWMtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8349/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test7582/sharedKeys?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NzU4Mi9zaGFyZWRLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "8cb8ed12-509b-48a2-852e-9aa92083df79" + "c812fdcd-bce7-4059-b706-f53805b1772f" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" ] }, "RequestBody": "", @@ -2979,47 +497,59 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "29c553ad-ca58-4510-b1dd-4a671ca4f9e8" - ], - "x-ms-hdi-served-by": [ - "eastus" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-correlation-request-id": [ - "287272ac-288b-483c-a59b-673c97d769f9" + "Access-Control-Allow-Origin": [ + "*" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Request-Context": [ + "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033322Z:287272ac-288b-483c-a59b-673c97d769f9" + "api-supported-versions": [ + "2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-request-id": [ + "b33b2b4a-b4db-4436-a33b-fd27d0f95d0b" + ], + "x-ms-correlation-request-id": [ + "b33b2b4a-b4db-4436-a33b-fd27d0f95d0b" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20230724T033751Z:b33b2b4a-b4db-4436-a33b-fd27d0f95d0b" ], "Date": [ - "Fri, 07 Apr 2023 03:33:21 GMT" + "Mon, 24 Jul 2023 03:37:50 GMT" + ], + "Content-Length": [ + "223" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"primarySharedKey\": \"/I9ihf8RcirHVXaQGMYYbJCwcYujD6psc+BOAkKGxT1cq91Q753QKpovwYUNAKLlG6jLMOeugEyfEiPXQw7lhw==\",\r\n \"secondarySharedKey\": \"wIjxr5SSstHr09hnABI2NX3kWGW0BmdFxCPqdnYOf+kJ/pOlsrNjqWoEu5lN1EYEa65ztpLv7SSx3FZ09O5czg==\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3363?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzMzYzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8349?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "93907c57-df40-4390-b405-c87b818daff5" + "fb9d80ff-4ec0-4d82-82e1-c84d7a04587e" ], "Accept-Language": [ "en-US" @@ -3027,8 +557,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3040,22 +570,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "67945439-0172-414a-bbbc-ec91926b3896" + "e2c3da77-cd77-4fff-a8ed-12c5b4867cca" ], "x-ms-correlation-request-id": [ - "67945439-0172-414a-bbbc-ec91926b3896" + "e2c3da77-cd77-4fff-a8ed-12c5b4867cca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033323Z:67945439-0172-414a-bbbc-ec91926b3896" + "KOREASOUTH:20230724T034127Z:e2c3da77-cd77-4fff-a8ed-12c5b4867cca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3064,7 +594,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:33:23 GMT" + "Mon, 24 Jul 2023 03:41:26 GMT" ], "Expires": [ "-1" @@ -3077,15 +607,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3097,7 +627,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3106,13 +636,13 @@ "11999" ], "x-ms-request-id": [ - "c6dd4ae2-b8c7-45f4-a137-f29bcc5c923b" + "a982e10d-c81b-4a9e-b8eb-6b11b9341c29" ], "x-ms-correlation-request-id": [ - "c6dd4ae2-b8c7-45f4-a137-f29bcc5c923b" + "a982e10d-c81b-4a9e-b8eb-6b11b9341c29" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033338Z:c6dd4ae2-b8c7-45f4-a137-f29bcc5c923b" + "KOREASOUTH:20230724T034143Z:a982e10d-c81b-4a9e-b8eb-6b11b9341c29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3121,7 +651,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:33:37 GMT" + "Mon, 24 Jul 2023 03:41:43 GMT" ], "Expires": [ "-1" @@ -3134,15 +664,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3154,7 +684,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3163,13 +693,13 @@ "11998" ], "x-ms-request-id": [ - "11f0b513-3c47-4897-8fe3-616526dbc50a" + "8d13de8c-3076-400d-910f-719751ac8817" ], "x-ms-correlation-request-id": [ - "11f0b513-3c47-4897-8fe3-616526dbc50a" + "8d13de8c-3076-400d-910f-719751ac8817" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033353Z:11f0b513-3c47-4897-8fe3-616526dbc50a" + "KOREASOUTH:20230724T034158Z:8d13de8c-3076-400d-910f-719751ac8817" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3178,7 +708,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:33:53 GMT" + "Mon, 24 Jul 2023 03:41:58 GMT" ], "Expires": [ "-1" @@ -3191,15 +721,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3211,7 +741,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3220,13 +750,13 @@ "11997" ], "x-ms-request-id": [ - "8f689ff0-8e86-4464-80ca-e87e3653e3ca" + "49c5a270-e689-44d1-82d1-e2c911eaea6b" ], "x-ms-correlation-request-id": [ - "8f689ff0-8e86-4464-80ca-e87e3653e3ca" + "49c5a270-e689-44d1-82d1-e2c911eaea6b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033409Z:8f689ff0-8e86-4464-80ca-e87e3653e3ca" + "KOREASOUTH:20230724T034214Z:49c5a270-e689-44d1-82d1-e2c911eaea6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3235,7 +765,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:34:08 GMT" + "Mon, 24 Jul 2023 03:42:13 GMT" ], "Expires": [ "-1" @@ -3248,15 +778,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3268,7 +798,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3277,13 +807,13 @@ "11996" ], "x-ms-request-id": [ - "bb6f05ef-ea59-4589-b9f8-b16b7a67144f" + "730ef725-439c-48be-81e8-69230446ebbf" ], "x-ms-correlation-request-id": [ - "bb6f05ef-ea59-4589-b9f8-b16b7a67144f" + "730ef725-439c-48be-81e8-69230446ebbf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033424Z:bb6f05ef-ea59-4589-b9f8-b16b7a67144f" + "KOREASOUTH:20230724T034229Z:730ef725-439c-48be-81e8-69230446ebbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3292,7 +822,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:34:23 GMT" + "Mon, 24 Jul 2023 03:42:29 GMT" ], "Expires": [ "-1" @@ -3305,15 +835,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3325,7 +855,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3334,13 +864,13 @@ "11995" ], "x-ms-request-id": [ - "78c1ff55-e29c-4db8-a1e0-220e0b9eae35" + "5dc490ec-878a-44ef-a8de-d81759455ab3" ], "x-ms-correlation-request-id": [ - "78c1ff55-e29c-4db8-a1e0-220e0b9eae35" + "5dc490ec-878a-44ef-a8de-d81759455ab3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033439Z:78c1ff55-e29c-4db8-a1e0-220e0b9eae35" + "KOREASOUTH:20230724T034245Z:5dc490ec-878a-44ef-a8de-d81759455ab3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3349,7 +879,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:34:38 GMT" + "Mon, 24 Jul 2023 03:42:45 GMT" ], "Expires": [ "-1" @@ -3362,15 +892,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3382,7 +912,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3391,13 +921,13 @@ "11994" ], "x-ms-request-id": [ - "48dd234e-43b3-41b8-85d4-28518dd806d5" + "8af90be6-e700-488d-a9db-b87db98df492" ], "x-ms-correlation-request-id": [ - "48dd234e-43b3-41b8-85d4-28518dd806d5" + "8af90be6-e700-488d-a9db-b87db98df492" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033454Z:48dd234e-43b3-41b8-85d4-28518dd806d5" + "KOREASOUTH:20230724T034301Z:8af90be6-e700-488d-a9db-b87db98df492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3406,7 +936,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:34:54 GMT" + "Mon, 24 Jul 2023 03:43:00 GMT" ], "Expires": [ "-1" @@ -3419,15 +949,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3439,7 +969,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3448,13 +978,13 @@ "11993" ], "x-ms-request-id": [ - "b3142e58-d997-4d85-9051-6ccec1c59769" + "78a4a721-595e-4477-9a53-ee77ae1d8ae3" ], "x-ms-correlation-request-id": [ - "b3142e58-d997-4d85-9051-6ccec1c59769" + "78a4a721-595e-4477-9a53-ee77ae1d8ae3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033509Z:b3142e58-d997-4d85-9051-6ccec1c59769" + "KOREASOUTH:20230724T034316Z:78a4a721-595e-4477-9a53-ee77ae1d8ae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3463,7 +993,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:35:09 GMT" + "Mon, 24 Jul 2023 03:43:16 GMT" ], "Expires": [ "-1" @@ -3476,15 +1006,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3495,23 +1025,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-request-id": [ - "25a98425-1f7f-4f46-888d-f17edf7d2042" + "efa96e59-c92c-4ecc-8d87-d1c485b0fcca" ], "x-ms-correlation-request-id": [ - "25a98425-1f7f-4f46-888d-f17edf7d2042" + "efa96e59-c92c-4ecc-8d87-d1c485b0fcca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033524Z:25a98425-1f7f-4f46-888d-f17edf7d2042" + "KOREASOUTH:20230724T034344Z:efa96e59-c92c-4ecc-8d87-d1c485b0fcca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3520,7 +1044,7 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:35:24 GMT" + "Mon, 24 Jul 2023 03:43:43 GMT" ], "Expires": [ "-1" @@ -3530,18 +1054,18 @@ ] }, "ResponseBody": "", - "StatusCode": 202 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzNDktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TkRrdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3556,13 +1080,13 @@ "11991" ], "x-ms-request-id": [ - "4302e5b4-730e-465e-8077-578cb59f29c3" + "7aad63af-2c4e-48e5-8f0c-bdf44d8a9800" ], "x-ms-correlation-request-id": [ - "4302e5b4-730e-465e-8077-578cb59f29c3" + "7aad63af-2c4e-48e5-8f0c-bdf44d8a9800" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033539Z:4302e5b4-730e-465e-8077-578cb59f29c3" + "KOREASOUTH:20230724T034345Z:7aad63af-2c4e-48e5-8f0c-bdf44d8a9800" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3571,58 +1095,10 @@ "nosniff" ], "Date": [ - "Fri, 07 Apr 2023 03:35:39 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMzNjMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE16TmpNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "37546363-2e5f-4146-9c8e-a8e154465eef" - ], - "x-ms-correlation-request-id": [ - "37546363-2e5f-4146-9c8e-a8e154465eef" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230407T033539Z:37546363-2e5f-4146-9c8e-a8e154465eef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Mon, 24 Jul 2023 03:43:44 GMT" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 07 Apr 2023 03:35:39 GMT" + "Connection": [ + "close" ], "Expires": [ "-1" @@ -3637,10 +1113,10 @@ ], "Names": { "Test-AzureMonitorRelatedCommands": [ - "hdi-ps-test3500", - "group-ps-test3363", - "storagepstest8508", - "workspace-ps-test2872" + "hdi-ps-test6604", + "group-ps-test8349", + "storagepstest4794", + "workspace-ps-test7582" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestClusterEnableSecureChannelCommands.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestClusterEnableSecureChannelCommands.json new file mode 100644 index 000000000000..22a9953dc0a7 --- /dev/null +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestClusterEnableSecureChannelCommands.json @@ -0,0 +1,731 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6566?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bde09b2-3e88-4db2-8eff-9d256e248bba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ] + }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ba21eae8-80e2-4c17-85a5-a647c6ecad80" + ], + "x-ms-correlation-request-id": [ + "ba21eae8-80e2-4c17-85a5-a647c6ecad80" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T042604Z:ba21eae8-80e2-4c17-85a5-a647c6ecad80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 04:26:04 GMT" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6566\",\r\n \"name\": \"group-ps-test6566\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6566/providers/Microsoft.Storage/storageAccounts/storagepstest9907?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDk5MDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1eaf46f7-aea5-4a36-ad0c-f2c6fab58006" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "104" + ] + }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/eb8ba689-c493-4a6f-b5e9-f8849485283c?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "eb8ba689-c493-4a6f-b5e9-f8849485283c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "20274631-4eeb-4773-92a5-0cd3968b675c" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T042610Z:20274631-4eeb-4773-92a5-0cd3968b675c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 04:26:10 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/eb8ba689-c493-4a6f-b5e9-f8849485283c?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9lYjhiYTY4OS1jNDkzLTRhNmYtYjVlOS1mODg0OTQ4NTI4M2M/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/eb8ba689-c493-4a6f-b5e9-f8849485283c?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a1216154-9512-4466-b51b-9a0d0f5481f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "55fc796a-9f6e-467b-9555-a52d8185e063" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T042627Z:55fc796a-9f6e-467b-9555-a52d8185e063" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 04:26:27 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/eb8ba689-c493-4a6f-b5e9-f8849485283c?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9lYjhiYTY4OS1jNDkzLTRhNmYtYjVlOS1mODg0OTQ4NTI4M2M/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e61ef973-1cb2-4d35-a18b-5d060c39284d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "72521c26-cadc-4c88-a46a-e10fae2ee76e" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T042630Z:72521c26-cadc-4c88-a46a-e10fae2ee76e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 04:26:30 GMT" + ], + "Content-Length": [ + "1393" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6566/providers/Microsoft.Storage/storageAccounts/storagepstest9907\",\r\n \"name\": \"storagepstest9907\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-08-03T04:26:05.8899722Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-08-03T04:26:05.8899722Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-08-03T04:26:05.7962064Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9907.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9907.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9907.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest9907.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9907-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9907-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9907-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6566/providers/Microsoft.Storage/storageAccounts/storagepstest9907/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTY2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDk5MDcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0cdcc4-0cf0-4d6e-8378-bec8508a0186" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56f31406-15ff-4de0-a8d6-64c350b35eef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "8cf88fe6-54d4-48ef-92de-e7bf371c673c" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T042631Z:8cf88fe6-54d4-48ef-92de-e7bf371c673c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 04:26:31 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6566?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2NTY2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "385a7530-be94-47f5-b7b2-8c7806c3f04e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "74159082-20aa-46b9-ac9d-d56fdb4d93bb" + ], + "x-ms-correlation-request-id": [ + "74159082-20aa-46b9-ac9d-d56fdb4d93bb" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T051349Z:74159082-20aa-46b9-ac9d-d56fdb4d93bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 05:13:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTmpZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "51776995-fb22-41cf-bae5-c8da468be4d1" + ], + "x-ms-correlation-request-id": [ + "51776995-fb22-41cf-bae5-c8da468be4d1" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T051404Z:51776995-fb22-41cf-bae5-c8da468be4d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 05:14:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTmpZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "767f3ca9-9149-401d-8644-2a58f5fb36c6" + ], + "x-ms-correlation-request-id": [ + "767f3ca9-9149-401d-8644-2a58f5fb36c6" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T051419Z:767f3ca9-9149-401d-8644-2a58f5fb36c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 05:14:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTmpZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "f408ed1e-6848-4f38-99fe-a6e5d9a9ebf9" + ], + "x-ms-correlation-request-id": [ + "f408ed1e-6848-4f38-99fe-a6e5d9a9ebf9" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T051434Z:f408ed1e-6848-4f38-99fe-a6e5d9a9ebf9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 05:14:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTmpZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "615ca2d9-55e0-48fb-a7b4-afeaa9541435" + ], + "x-ms-correlation-request-id": [ + "615ca2d9-55e0-48fb-a7b4-afeaa9541435" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T051449Z:615ca2d9-55e0-48fb-a7b4-afeaa9541435" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 05:14:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTmpZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "6abfb64e-ca31-4ff8-b7da-098bf2811e56" + ], + "x-ms-correlation-request-id": [ + "6abfb64e-ca31-4ff8-b7da-098bf2811e56" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T051504Z:6abfb64e-ca31-4ff8-b7da-098bf2811e56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 05:15:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDY1NjYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFkxTmpZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "f393e6bf-497d-492f-aba3-9b7736a753ac" + ], + "x-ms-correlation-request-id": [ + "f393e6bf-497d-492f-aba3-9b7736a753ac" + ], + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T051504Z:f393e6bf-497d-492f-aba3-9b7736a753ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 03 Aug 2023 05:15:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ClusterEnableSecureChannelCommands": [ + "hdi-ps-test4547", + "group-ps-test6566", + "storagepstest9907" + ] + }, + "Variables": { + "SubscriptionId": "964c10bb-8a6c-43bc-83d3-6b318c6c7305" + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestClusterRelatedCommands.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestClusterRelatedCommands.json index d406f5c43f91..f33ec0e5f3a4 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestClusterRelatedCommands.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestClusterRelatedCommands.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8336?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test1595?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QxNTk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "7575795b-b36e-4103-b7c6-2eab8885d67a" + "9aabcdfd-148c-490a-8bec-f10c2ccdee72" ], "Accept-Language": [ "en-US" @@ -14,2404 +14,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" - ] - }, - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "bcb415b7-b5bd-49f7-b3c4-19478876c296" - ], - "x-ms-correlation-request-id": [ - "bcb415b7-b5bd-49f7-b3c4-19478876c296" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085510Z:bcb415b7-b5bd-49f7-b3c4-19478876c296" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:55:10 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336\",\r\n \"name\": \"group-ps-test8336\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDkwNDk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c1f446ef-acd0-4762-a44f-c4d7bb0d7b32" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "101" - ] - }, - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/ce9ab527-d4df-40d5-8a6b-5749a04b0d70?monitor=true&api-version=2017-10-01" - ], - "Retry-After": [ - "17" - ], - "x-ms-request-id": [ - "ce9ab527-d4df-40d5-8a6b-5749a04b0d70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "d5ad82a3-995e-426f-9b3a-566340c798e4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085514Z:d5ad82a3-995e-426f-9b3a-566340c798e4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:55:13 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/ce9ab527-d4df-40d5-8a6b-5749a04b0d70?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9jZTlhYjUyNy1kNGRmLTQwZDUtOGE2Yi01NzQ5YTA0YjBkNzA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "42d7c8b1-36fb-43b0-b73f-de7807d6bf2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "a29aee7d-e76b-4fe5-85ad-936354b12f40" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085531Z:a29aee7d-e76b-4fe5-85ad-936354b12f40" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:55:30 GMT" - ], - "Content-Length": [ - "1384" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049\",\r\n \"name\": \"storagepstest9049\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T08:55:12.0898349Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T08:55:12.0898349Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-04-06T08:55:11.7616824Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9049.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9049.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9049.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest9049.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9049-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9049-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9049-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDkwNDkvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d995c070-8c93-4829-8fe8-ac72929c4bb8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4c7339f1-d8be-49d4-a8ee-38a8cf4de0e0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "73513cea-67c1-423d-9cff-5ec79b1e259b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085531Z:73513cea-67c1-423d-9cff-5ec79b1e259b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:55:31 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"8r5aemxe6DCZInKKAeuhopOuAgu0sJRtr2DjoHhzh5TgGbB6tVPRU9oVMhP65QhRqX5cElkmebLl+AStD8xqiQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"2baNpgpt8uhO9LtlxeFzd6eGi5XylAtsUpLiAEXzqQRpJmJ01aDLkLkFJgDe5Efo7xH1L9j97Y87+AStK/lDpA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bd17b39c-df51-4a91-9719-21430797e4ee" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "1fcfcf16-145c-48c6-822a-911dee1d2f84" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085532Z:1fcfcf16-145c-48c6-822a-911dee1d2f84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:55:31 GMT" - ], - "Content-Length": [ - "105467" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D15_v2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E48A_V4\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_F1\",\r\n \"STANDARD_F16\",\r\n \"STANDARD_F2\",\r\n \"STANDARD_F4\",\r\n \"STANDARD_F8\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E48a_v4\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"4.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_D15_V2\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D15_v2 (20 cores, 143360 MB)\",\r\n \"maxDataDiskCount\": 40,\r\n \"memoryInMb\": 143360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1024000,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"STANDARD_F1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F1 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 16384,\r\n \"webWorkerResourceDiskSizeInMb\": 16384\r\n },\r\n {\r\n \"name\": \"STANDARD_F16\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F16 (16 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 262144,\r\n \"webWorkerResourceDiskSizeInMb\": 262144\r\n },\r\n {\r\n \"name\": \"STANDARD_F2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 32768,\r\n \"webWorkerResourceDiskSizeInMb\": 32768\r\n },\r\n {\r\n \"name\": \"STANDARD_F4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F4 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 65536,\r\n \"webWorkerResourceDiskSizeInMb\": 65536\r\n },\r\n {\r\n \"name\": \"STANDARD_F8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F8 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 131072,\r\n \"webWorkerResourceDiskSizeInMb\": 131072\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E48a_v4 (48 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"East US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2142" - ] - }, - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9049.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test6104\",\r\n \"key\": \"8r5aemxe6DCZInKKAeuhopOuAgu0sJRtr2DjoHhzh5TgGbB6tVPRU9oVMhP65QhRqX5cElkmebLl+AStD8xqiQ==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"06f4fa0e-49e1-4429-bafc-172bd339a88c\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "92fe79a7-4059-44cb-bd49-f3a6e0fbffee" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a4a60125-ac9f-4a2f-a2c6-afb5ad6bfa63" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085538Z:a4a60125-ac9f-4a2f-a2c6-afb5ad6bfa63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:55:37 GMT" - ], - "Content-Length": [ - "1956" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104\",\r\n \"name\": \"hdi-ps-test6104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06f4fa0e-49e1-4429-bafc-172bd339a88c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ce61d77f01da41e59fdf3450538e3b61\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2023-04-06T08:55:37.377\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9049.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test6104\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fa184305-301e-432a-b111-5432a1c42ea1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "302bf559-46c1-41a0-9643-5a42443c0377" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085609Z:302bf559-46c1-41a0-9643-5a42443c0377" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:56:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5e71efad-b109-4c9d-9656-9f4aad1cb68f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e77b7c6e-5a2f-44db-9a5c-96645896ffee" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085639Z:e77b7c6e-5a2f-44db-9a5c-96645896ffee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:56:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8dc8cd33-f6cd-486c-9556-89e706102e6d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "fccb5483-a6bf-4f61-b89f-b3b5b0ff25f8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085710Z:fccb5483-a6bf-4f61-b89f-b3b5b0ff25f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:57:10 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "69616cdf-256d-4c43-8ac1-7a6e7ed01084" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b2bd27f1-ab41-4e11-a679-8beee74865ce" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085741Z:b2bd27f1-ab41-4e11-a679-8beee74865ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:57:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "84f7e676-9f54-4897-aa7b-28b035a01808" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "51034083-ca8a-4a04-998f-5081e3b8df17" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085811Z:51034083-ca8a-4a04-998f-5081e3b8df17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:58:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3ce762b1-4f33-4286-b547-1283506ba630" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "c1f73e95-b538-48af-8f50-c41ca73a07b1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085842Z:c1f73e95-b538-48af-8f50-c41ca73a07b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:58:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1db0b82b-9b5b-4cd9-95ec-03ce8f825d65" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f361cd04-d76b-438e-a5d7-bd8f2a1a5688" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085913Z:f361cd04-d76b-438e-a5d7-bd8f2a1a5688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:59:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "14d74b0a-6ad3-4e69-afd7-a99fb4d37695" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e77e3387-cccc-44b6-9afc-7d6836685821" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085943Z:e77e3387-cccc-44b6-9afc-7d6836685821" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:59:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9caa035f-e23b-48cf-b399-2c8b65760e9b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d022e36b-6453-43b9-854b-b3098a770da6" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090014Z:d022e36b-6453-43b9-854b-b3098a770da6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:00:14 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "77320506-7c8e-41ed-b665-503af65a5742" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f33b9f91-aa46-4a74-8365-c8fde1a29c19" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090045Z:f33b9f91-aa46-4a74-8365-c8fde1a29c19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:00:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e57dde5f-47df-499f-b616-ee3e730271a7" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4744c4a3-dc4a-4005-9796-30b14a95d81e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090116Z:4744c4a3-dc4a-4005-9796-30b14a95d81e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:01:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a700332c-56d7-4e13-b5e2-6e45ac099fa8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6a765809-b71c-412b-92ec-a85361367277" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090146Z:6a765809-b71c-412b-92ec-a85361367277" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:01:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "546e4799-c877-4849-ba63-e7e9ca3eaa6a" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5223f5a8-d4b7-4ffb-81c1-7840f357d710" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090217Z:5223f5a8-d4b7-4ffb-81c1-7840f357d710" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:02:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "960790c1-aece-4c35-8f11-0f681f54d991" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8f14dad5-ce4e-40f4-8c74-e553ac62c262" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090248Z:8f14dad5-ce4e-40f4-8c74-e553ac62c262" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:02:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "20c7501e-7cd5-4ead-8a19-ae502bdef472" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "18c45583-1d8b-4807-88c1-74949a9520af" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090319Z:18c45583-1d8b-4807-88c1-74949a9520af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:03:18 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6dd2815e-72b3-4211-b86f-a0a23246b39d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "2968b905-41bb-40d3-a5b0-44d57c67aca4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090350Z:2968b905-41bb-40d3-a5b0-44d57c67aca4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:03:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "11c435f4-3265-464b-87f6-733c0b4fb6ba" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b153af49-179e-4fd3-816a-503f07334280" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090420Z:b153af49-179e-4fd3-816a-503f07334280" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:04:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5dbe9fef-889b-4e00-a24c-43b647c4a043" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "de37ed30-b860-4732-9c09-dfd87df484c6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090451Z:de37ed30-b860-4732-9c09-dfd87df484c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:04:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b7bde6b0-2378-48b4-a70b-0f26d74bdce6" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "1ed70993-e8bb-4ca0-bdc4-f160220f672a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090521Z:1ed70993-e8bb-4ca0-bdc4-f160220f672a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:05:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "07cc4cd9-a0a5-4a32-a7c5-4c59ee4157e6" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d3e443d9-7067-42c1-8cc2-397ef47beb4d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090553Z:d3e443d9-7067-42c1-8cc2-397ef47beb4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:05:52 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "94c08aaa-4a10-4a58-a3d1-c6a8aee44fd1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "77a31966-35c3-45e6-9dc1-f6068aac4953" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090624Z:77a31966-35c3-45e6-9dc1-f6068aac4953" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:06:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6fcb9d8a-380b-42d1-889d-2261d6062d45" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9195627f-b3e7-4dd9-ac6e-99fefb98506d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090654Z:9195627f-b3e7-4dd9-ac6e-99fefb98506d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:06:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2b7c6fb2-e3b1-44e3-8de0-5d551e19ddb4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0712a9ed-099c-4ca2-aea8-89272e7a8ab0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090725Z:0712a9ed-099c-4ca2-aea8-89272e7a8ab0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:07:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8637c7cb-295a-4dbb-b94e-31ae851a38dd" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8ecb688b-fa36-49e1-afd9-613351428c3e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090755Z:8ecb688b-fa36-49e1-afd9-613351428c3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:07:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c391da9e-2316-4bba-ae21-04e2932f69d8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6160d397-3e22-4af0-b35f-01b9d220224d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090826Z:6160d397-3e22-4af0-b35f-01b9d220224d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:08:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "486d85ad-7001-4161-95b9-0bf5fda11f77" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "2c506aad-e8e4-49db-af5a-09a1628e8348" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090856Z:2c506aad-e8e4-49db-af5a-09a1628e8348" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:08:56 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0c586156-bfa7-471a-b3bf-f6e71133a05a" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d227ca15-8c03-4e63-9cd9-e0aa9ac72dbb" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8ebe10ee-564c-4d3e-9db1-390f524ab828" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T090857Z:8ebe10ee-564c-4d3e-9db1-390f524ab828" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:08:56 GMT" - ], - "Content-Length": [ - "2174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104\",\r\n \"name\": \"hdi-ps-test6104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06f4fa0e-49e1-4429-bafc-172bd339a88c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ce61d77f01da41e59fdf3450538e3b61\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T08:55:37.377\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9049.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test6104\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f379cc77-b981-49e2-aa73-f504ace3ed95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dcc06def-34eb-4c81-a755-27415a667ac5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "15488404-99da-4994-af3e-c0aee84e6150" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T090907Z:15488404-99da-4994-af3e-c0aee84e6150" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:09:06 GMT" - ], - "Content-Length": [ - "2174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104\",\r\n \"name\": \"hdi-ps-test6104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06f4fa0e-49e1-4429-bafc-172bd339a88c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ce61d77f01da41e59fdf3450538e3b61\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T08:55:37.377\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9049.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test6104\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e66e2dfc-7d8d-4b97-ab27-d7947a2bcaf5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "87c9b723-8af6-4b31-87a8-a5ca5aa4d63f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e20ed95f-b33a-46b6-a447-ede0e0ed7873" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091012Z:e20ed95f-b33a-46b6-a447-ede0e0ed7873" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:10:11 GMT" - ], - "Content-Length": [ - "2174" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104\",\r\n \"name\": \"hdi-ps-test6104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06f4fa0e-49e1-4429-bafc-172bd339a88c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ce61d77f01da41e59fdf3450538e3b61\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T08:55:37.377\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9049.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test6104\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f379cc77-b981-49e2-aa73-f504ace3ed95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "ed50f51a-62ee-49cb-bb32-faacb13d53da", - "6bf663ff-44d7-4968-bc0e-1bebb19056de", - "e7c2fe05-e766-4571-86b4-9bf91b66790a", - "eaa4c2bb-3c6f-442f-ba0e-8b5ea5a2b917", - "60357078-2fbd-4523-bdb7-5d5ad13ef8b5", - "60d2112e-031f-4c33-ba56-715c9de48b96", - "a5f377f3-d164-434c-b4d9-1acef423781f", - "31975e44-f26c-4cd2-8122-8298d0d24a5f", - "b7ff97fe-5d2d-43a9-ba1b-ad3aab7ce1a9", - "df775c79-6c8f-4722-8992-a6684d7c9f17", - "8f595ebf-355e-4fc3-a6d4-d08a60700f2a", - "185b8767-3af7-4152-96ef-2cf7958caa6b", - "ba33ae19-024f-40e7-bdf8-51bf04db7787", - "21168716-c492-4f45-9ef8-52263b2cdb02" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "2a29ff67-dc1b-4222-9b62-d72de724849f" - ], - "x-ms-correlation-request-id": [ - "2a29ff67-dc1b-4222-9b62-d72de724849f" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T090905Z:2a29ff67-dc1b-4222-9b62-d72de724849f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:09:05 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "280293" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.HDInsight/clusters/xinli1debugipsec\",\r\n \"name\": \"xinli1debugipsec\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"263aad4e-6765-495a-9ba6-c5edab28ef5a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a836521cad934fc89c517a90ae892a7a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-27T07:38:27.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1debugiphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.Storage/storageAccounts/xinli1debugiphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1debugipsec-2023-03-27t07-37-02-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.HDInsight/clusters/test-denyinbound\",\r\n \"name\": \"test-denyinbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Australia East\",\r\n \"etag\": \"17ac0a46-8e67-414f-bb3c-ca5c4bd35712\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6d2976b47ed470d9b5f11bb7d81db2b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-29T11:13:22.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdenyinbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Storage/storageAccounts/testdenyinbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-denyinbound-2023-03-29t11-04-30-897z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-outbount-cvrio4\",\r\n \"name\": \"hadoop-outbount-cvrio4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"b577a3fd-3386-4a5e-9149-a8ae7a809d12\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6fcf0aa36cce419da9a9e7222cf4533c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T12:55:12.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"192.168.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-outbount-cvrio4-2023-02-27t12-53-32-920z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-sentinel\",\r\n \"name\": \"hadoop-sentinel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"84ed899b-d6f7-481e-9976-f5859cc7ddce\",\r\n \"tags\": {\r\n \"SENTINAL\": \"DONTDELETE\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"053fc6fe2d3a4196b4ed8c5845b6a297\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-02T13:28:33.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-sentinel-2023-01-02t13-26-06-000z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdptestcluster1\",\r\n \"name\": \"hdptestcluster1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"6294e7eb-d942-4da0-bb22-69ac8aa8ab10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"711698d20f7d4e559b55785590fdc382\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T20:31:14.29\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdptestclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdptestclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdptestcluster1-2023-02-16t20-29-01-114z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.HDInsight/clusters/srinihadooptest\",\r\n \"name\": \"srinihadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"6799f8b5-f6b7-490b-bfce-c8e96c0a69d8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4a97d33a74354cb8b505314852fd67dc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T06:09:38.023\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinihadooptehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.Storage/storageAccounts/srinihadooptehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinihadooptest-2023-04-03t06-06-59-470z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumanatahivetest\",\r\n \"name\": \"sumanatahivetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"e0ab8abe-ea66-4786-a963-b8bd59cd68f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0752c11287947f6ad407dc35ef9f0a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T10:25:01.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 42\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumanatahivetest-2023-02-23t10-13-41-228z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantahadooptest\",\r\n \"name\": \"sumantahadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"3e2ef5dc-b06c-49f1-a0f5-1064c87c2904\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a3a347bee65443c5b4ffc02c295dca36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T06:32:06.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantahadooptestcluste-2023-03-24t06-28-54-846z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantatestsparkcluster\",\r\n \"name\": \"sumantatestsparkcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"eadbad16-940e-4ba1-8d10-e35b31b3038c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7571860162e244c9ac5f369c6a6182bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-26T02:19:04.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantatestsparkcluster-2023-02-26t02-15-03-734z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryahadoop\",\r\n \"name\": \"suryahadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"efc66412-384f-478b-98b8-b9c5370b1a9e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b6b32d28d9e4bcf81e16dcceb9d7c90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T09:31:39.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryahadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryahadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryahadoop-2023-02-16t09-30-23-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryaspark\",\r\n \"name\": \"suryaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"4e2c5b28-0661-4614-9557-60741cb699d4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f34179e0af574bd990a4a80e0f850420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T09:51:40.6\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryaspark-2023-02-23t09-49-41-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.HDInsight/clusters/andarmod-march2023\",\r\n \"name\": \"andarmod-march2023\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58889b01-8efb-45b7-a3da-3c1e8eea158f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b47d639b35f94be4955cc2dec8b2320d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-07T16:54:08.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodmarchhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.Storage/storageAccounts/andarmodmarchhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-march2023-2023-03-07t16-51-41-821z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyanipsectest1\",\r\n \"name\": \"chaoyanipsectest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e788daa3-aa02-49d3-b558-29403e44da93\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.5.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2207131812.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"367ac0f996a0421bbce329925e291b05\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-11T08:43:11.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyanipsecthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyanipsecthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyanipsectest-2022-08-11t08-39-02-672z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyantesting1\",\r\n \"name\": \"chaoyantesting1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"29167e66-afe2-4c5f-b8b7-00b165d9a72e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"43fb4c0684964cc09e2bb85da780e87b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-05-19T05:33:22.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyantestinhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyantestinhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyantesting-2022-05-19t05-31-45-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalhbasecluster\",\r\n \"name\": \"faisalhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c2d260b3-7c88-4293-a197-3bd01ba5cba9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"fdd6f2f04e214787a91ab03d8c70e43c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-09T18:59:29.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"Execution of the following scripts failed :- Custom\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalhbasecluster-2023-02-09t18-57-54-885z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalkafkacluster\",\r\n \"name\": \"faisalkafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6a22e8d4-9a64-4f7c-81e0-dbc10fdc4396\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"f96f014c44104e059b9b76cdf5786212\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:32:47.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalkafkaclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalkafkaclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalkafkaclist-2023-02-15t17-31-20-101z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsparkthreedotone\",\r\n \"name\": \"faisalsparkthreedotone\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"28e18c5f-d479-4420-a009-f239f0866d77\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"08a08b13feb040f695fe823f9cd4ce0b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T15:01:25.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsparkthhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsparkthhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsparkthreedotone-2023-02-16t15-00-02-589z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprk3dot1\",\r\n \"name\": \"faisalsprk3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3e344fb9-ae16-4de5-9d8a-88f3492631f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b19b209e520840a798c9fdf0853ca32d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-14T17:03:17.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprk3dohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprk3dohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprk3do-2023-02-14t17-01-00-509z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprkcluster3dot1\",\r\n \"name\": \"faisalsprkcluster3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"293ccb46-de93-4a32-a7db-1b7e7354530b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"40de045ed14244048ed41c11aa55ce6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:31:11.627\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprkcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprkcluster-2023-02-15t17-29-17-755z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.HDInsight/clusters/for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"name\": \"for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fbca8ad-f6d9-459a-85de-2d41bbc13acd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"218204ad46f5479f8700266ad08536ab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T02:22:59.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"forhditestspahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.Storage/storageAccounts/forhditestspahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"forhdi-test-spark-24-do-2023-02-15t02-20-51-216z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104\",\r\n \"name\": \"hdi-ps-test6104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06f4fa0e-49e1-4429-bafc-172bd339a88c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ce61d77f01da41e59fdf3450538e3b61\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T08:55:37.377\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9049.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test6104\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.HDInsight/clusters/hdi-spark-test-eastus\",\r\n \"name\": \"hdi-spark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"de91a5d7-3f91-49ad-a023-99cceacd47f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"46ee674f530e4c6eac0bf40ca8fa6b13\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T18:25:18.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-spark-test-eastus-2023-02-23t18-23-27-300z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.HDInsight/clusters/jacky-spart-cluster\",\r\n \"name\": \"jacky-spart-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f93e581f-303e-40f6-aa2e-e2af037d2015\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ed0cbe2a53f6451a9a9a51943b3b7e4c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 1,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:34:56.1\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jackyspartcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.Storage/storageAccounts/jackyspartcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jacky-spart-cluster-2023-03-10t07-31-05-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/kafkajartest\",\r\n \"name\": \"kafkajartest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5dba8150-35d1-4431-9a33-1f6e645fb976\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"afa6e9ba6cb04b3dbb487637e4b4971c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T15:56:24.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafkajartesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/kafkajartesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafkajartest-2023-03-24t15-54-14-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/rampuvhbasecluster\",\r\n \"name\": \"rampuvhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"112945a7-a3d1-4600-8ae7-1d8f03309d10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"cce431c503424ea5a3c0d103329b7542\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-17T22:57:31.78\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rampuvhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/rampuvhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"rampuvhbasecluster-2023-01-17t22-44-44-409z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.HDInsight/clusters/shankarhadooptestcluster\",\r\n \"name\": \"shankarhadooptestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06e26256-25d4-4fba-9648-30f7078f0840\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c164b1edd07f4b3fbb0787d101784942\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T01:28:16.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shankarhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shankarhadoop-2023-03-23t01-23-49-690z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n },\r\n {\r\n \"name\": \"shankarhadoophdistorage2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark2d4\",\r\n \"name\": \"spark2d4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1153c11a-2a85-46e7-a734-52015dc5868d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c883f1ec21bc4c849523971654062efd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T07:42:07.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark2d4hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark2d4hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark2d4-2023-02-15t07-39-53-493z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark3d1\",\r\n \"name\": \"spark3d1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4684704b-9b54-4c86-af1c-7ef79b87b2aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7e791962c38f418b9474926b349621df\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-08T09:41:23.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark3d1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark3d1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark3d1-2023-03-08t09-39-29-001z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.HDInsight/clusters/sparkclustertest\",\r\n \"name\": \"sparkclustertest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8b31425f-33d6-4fb4-a949-8ecf8ab6931b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a49afaa3cee6473ea18436341998a8ca\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T05:40:39.997\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparkclusterteststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.Storage/storageAccounts/sparkclusterteststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparkclustertest-2023-02-20t05-37-29-162z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/sparktezviewtesting\",\r\n \"name\": \"sparktezviewtesting\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"51679a92-9088-4c04-a123-98b0d47a2f1f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"52575b0c9da14a91b6b0164b881fc0bd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T21:40:20.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparktezviewthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/sparktezviewthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparktezviewtesting-2023-04-03t21-38-23-344z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.HDInsight/clusters/sultan-hdi-cluster-1\",\r\n \"name\": \"sultan-hdi-cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8c758461-3e41-4c18-a9f3-5ce77e05a7bf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"63513e3e784441259bb73ad58c602241\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T15:51:03.267\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sultanhdiclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Storage/storageAccounts/sultanhdiclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sultan-hdi-cluster-2023-04-03t15-44-34-333z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.HDInsight/clusters/testhadoopv-rchandekar\",\r\n \"name\": \"testhadoopv-rchandekar\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"517c95d3-0333-442e-90fc-49c3aa0474c5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbdf8584bd7146bfa881a9f6d0edb126\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-19T09:11:15.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhadoopvrchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.Storage/storageAccounts/testhadoopvrchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhadoopv-rchandekar-2023-02-19t09-08-45-240z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/testsprk1\",\r\n \"name\": \"testsprk1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"80c39751-b509-48cc-b33b-f426446131c6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"00161d115cb043148e4ee70f3480841a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-22T15:55:55.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsprk1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/testsprk1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testsprk1-2023-03-22t15-53-40-199z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut_res_group_extremelengthextremelengthextremelengthextremelengthextremelengthextremelen/providers/Microsoft.HDInsight/clusters/wut-cluster-extremelengthextremelengt1\",\r\n \"name\": \"wut-cluster-extremelengthextremelengt1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ef9588d7-7391-4786-ac73-8a3bd685c737\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3438ce92023a43bfb69f13dd19abe1a1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-03T07:59:34.263\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-cluster-extremeleng-2023-03-03t07-50-04-213z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi1\",\r\n \"name\": \"wut-msi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"cbe06749-73db-43d4-bc7d-c659f66fae76\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3ab1d1b9f8f74bfe9e47b7f47bb2d484\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T10:21:20.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi1-2023-02-16t10-18-25-176z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi-with-disk\",\r\n \"name\": \"wut-msi-with-disk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"abce6322-b4bf-459b-8bf2-76d00b710b0b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"463aa4295be340609178d8503f319c5e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T07:17:39.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi-with-disk-2023-02-20t07-16-09-847z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1adls04191\",\r\n \"name\": \"x1adls04191\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b07b7393-e919-4fa3-a498-53a294c6c378\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"8e19fc8c328c4078aeaee5eead0dfba3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-04-19T05:40:17.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1adlsgen20419.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1adlsgen20419\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/x1usermsi0924\",\r\n \"key\": null,\r\n \"fileSystem\": \"x1adls04191fs\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/microsoft.managedidentity/userassignedidentities/x1usermsi0924\": {\r\n \"principalId\": \"048a9639-b7e1-4671-b9aa-2bab056c5b3b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.HDInsight/clusters/xinli1agentdebug\",\r\n \"name\": \"xinli1agentdebug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f2a8f840-0c8b-4588-af98-c0471c75f525\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e231aeff71145208dfd23b216e5167c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-28T02:48:54.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.39.1.25\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1agentdehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Storage/storageAccounts/xinli1agentdehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1agentdebug-2023-02-28t02-46-13-138z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-ssh-test\",\r\n \"name\": \"yalu-ssh-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"11482072-35bb-4f70-8c7c-d83fbd365235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"535fba725345441f84453158ed58bb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-03-28T05:51:27.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusshtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yalusshtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-ssh-test-2022-03-28t05-50-12-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yaluversiontest\",\r\n \"name\": \"yaluversiontest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8a084b25-3fdf-41dc-8524-ff314d5736eb\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2207131812.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"165dba2239b4435fb837bbb28cd94562\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-26T04:01:17.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluversiontehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluversiontehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yaluversiontest-2022-08-26t03-59-45-628z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweiuseprod\",\r\n \"name\": \"ziweiuseprod\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"a1c924a7-ef70-424c-a707-3acea34ed284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f5ed2b902a8c4148aaa06b2083c5fcf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-20T13:26:43.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweiuseprodhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweiuseprodhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweiuseprod-2022-02-20\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdihiveinteractivequery\",\r\n \"name\": \"hdihiveinteractivequery\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"e0406da8-4e88-47be-9046-bd73cc55730a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b630111eea894ea2b83b9927fd696708\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-06T19:40:13.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 18\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdihiveinterahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdihiveinterahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdihiveinteractivequery-2023-01-06t19-33-23-190z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.HDInsight/clusters/jairokafkacluster\",\r\n \"name\": \"jairokafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"72468a3d-3ff2-41a8-a319-0380807b9fda\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e4d6eaf7f2a84e9c8f73ecf5f916659c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T17:58:43.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jairokafkacluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.Storage/storageAccounts/jairokafkacluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jairokafkacluster-2023-02-27t17-54-29-913z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/zzzz-shangwei-test-pe\",\r\n \"name\": \"zzzz-shangwei-test-pe\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bd656217-7df4-4dbd-8767-deb0aa1007b5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2208310943.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"01bc6a206aea46a0844a6ba5e4c1e4ce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-09-28T11:53:42.887\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-test-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"asd-shangwei-test-pe-2022-09-28t11-39-57-881z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-test-msi\": {\r\n \"principalId\": \"2f5a5662-86b4-4c5f-a3b8-eba4db9b5ee0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.HDInsight/clusters/hiveserverinteractivetestfeb20\",\r\n \"name\": \"hiveserverinteractivetestfeb20\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"6cabab4b-9e77-4a77-b9f6-e36fbb52d701\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f3518a9df252426a87aaabe174d34549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T04:55:42.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hiveserverinthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.Storage/storageAccounts/hiveserverinthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hiveserverinte-2023-02-20t04-52-17-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.HDInsight/clusters/shangwei-poc-hdi\",\r\n \"name\": \"shangwei-poc-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4dc7b507-2bf7-47dd-baf5-fe0fd82a7718\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e97453096a1423fae7bf95c28faf715\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T13:24:27.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipochdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Storage/storageAccounts/shangweipochdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-poc-hdi-2023-02-15t13-22-36-476z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.HDInsight/clusters/test-outbound\",\r\n \"name\": \"test-outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"6feb5fe3-fa25-4116-b17b-4d0771b02ff3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"aa331a83baf348149ce4f24b5ab04f7e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-14T09:42:47.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.3.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsheinoutbound.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Storage/storageAccounts/testsheinoutbound\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-outbound-2023-03-14t09-36-58-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweinewregion\",\r\n \"name\": \"ziweinewregion\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany North\",\r\n \"etag\": \"fcd8e6b6-92bf-4c33-a1ae-7fddaec7a588\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b4a777151b6a4402bc22c9d9224d01a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-06-09T06:27:54.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweinewregiohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweinewregiohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweinewregion-2022-06-09t06-26-13-110z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip1\",\r\n \"name\": \"wuttesttip1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"c643f24b-ab3b-446a-a944-cc22976b6d5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6878300ba5904fee8d37ea4c49fd657e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T08:05:36.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220830tip1\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip2\",\r\n \"name\": \"wuttesttip2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c6a1e318-6b1a-4ee7-9678-3c45a460054a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5022c17e86c04151b52efa226c781236\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T09:04:25.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220831tip2\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestec2023021501\",\r\n \"name\": \"zzytestec2023021501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"f80298a0-42c9-45fb-bcbd-c21949a368e6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302140238.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab068287b1c54e2e86f3cd009a2994f7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-02-15T05:51:53.337\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestec2023hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestec2023hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestec20230214-2023-02-15t05-48-55-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytesteccert003\",\r\n \"name\": \"zzytesteccert003\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"717d837f-3ba3-4b6a-8316-488824d78c8a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"926003a85ef746a79582414d9d0f8aef\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-01-30T08:53:33.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesteccerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesteccerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytesteccert003-2023-01-30t08-52-19-685z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.HDInsight/clusters/alaw-hadoop\",\r\n \"name\": \"alaw-hadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"a644024e-45da-4b23-8347-7ccadb095d46\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"acf2f5f3b77d49eda85a0d2ba1854d3e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-02T02:05:48.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"alawhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.Storage/storageAccounts/alawhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"alaw-hadoop-2023-03-02t02-05-00-094z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy12testclimsgraph\",\r\n \"name\": \"zzy12testclimsgraph\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b1954f3b-435e-4d0e-8129-4e82dd07e189\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"30cbd2b68eaf4d899a1f88852ae30d0a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-05-18T04:00:46.723\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://lanjuntesthdihdistorage.blob.core.windows.net/ssh/changecredentials.sh. Exception message: Script URI cannot be retrieved correctly. HTTP Status code: Conflict.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy12testclimsgraph\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-01\",\r\n \"name\": \"shiyi-pl-hadoop-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29990d6a-6caa-4b11-82f6-30fea35a6fc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c2e3babae5ec4ee08a36c2c90894eced\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:41:45.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 8\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa01.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa01\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-01\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-02\",\r\n \"name\": \"shiyi-pl-hadoop-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"fdf7f0f4-800a-45fc-8b4f-5357b8b1c3d2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2fd6536c8ce148bda284f73d7444d400\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f8\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:46:03.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-03\",\r\n \"name\": \"shiyi-pl-hadoop-03\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"3b96fb85-fa13-40f2-8abe-901ca94902e0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"11f0972bacd44965a373acd717924ecd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f16\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:14:35.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa03.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa03\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-03\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-04\",\r\n \"name\": \"shiyi-pl-hadoop-04\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"83d4b2bd-a438-4884-b578-07fd80427e3d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c1fc40e15a2d41dfab258e833e6ba850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:16:52.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa04.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa04\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-04\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-05\",\r\n \"name\": \"shiyi-pl-hadoop-05\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"c4b9f731-3773-4ff7-b484-5b0ff3394ff7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c60d7a208817420d8320be7c677ab2f2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:24:54.443\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 128\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa05.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa05\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-05\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-06\",\r\n \"name\": \"shiyi-pl-hadoop-06\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"302f52c5-59fc-4636-938d-d491fe9920fc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8247d20bc8e448279746c2b62ce805b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:19:35.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa06.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa06\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-06\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-07\",\r\n \"name\": \"shiyi-pl-hadoop-07\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f4ef091a-a24c-417c-9962-bcfc8b02de8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"239c19a2c1554ed7862044e0e4703f22\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:37:41.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa07.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa07\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-07\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-08\",\r\n \"name\": \"shiyi-pl-hadoop-08\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f76467ac-9a10-4174-b85a-e96845254047\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"d8fda12bd8b444b186f37dea68622d31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:39:46.89\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa08.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa08\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-08\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-09\",\r\n \"name\": \"shiyi-pl-hadoop-09\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29bfd3d6-d1bb-4b99-9bce-f4c149495311\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b0602bd423544d729d56f6dd50a5fe78\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:15.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa09.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa09\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-09\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-10\",\r\n \"name\": \"shiyi-pl-hadoop-10\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8e41f979-734a-47e5-a6a6-ef6a80a2a9df\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1b548cbfb8b24d46a360df3d6ccf07c8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:29.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa10.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa10\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-10\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-11\",\r\n \"name\": \"shiyi-pl-hadoop-11\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"d6696882-f688-4e87-bd74-b7e51b809d79\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4c8e5b20edca4aef98d5590715a9dd2c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:10.573\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa11.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa11\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-11\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-12\",\r\n \"name\": \"shiyi-pl-hadoop-12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7620fa29-cc62-4974-8540-bdfa2dc5f878\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9d2d4967c7a14a22ae8718988b6caa2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:25.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa12.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa12\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-12\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hbase-01\",\r\n \"name\": \"shiyi-pl-hbase-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8db0b47e-ec70-47c0-bfc8-1dec22d35b87\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"3b5e5a78385a4c0da678b1d30c0ca0b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:03:24.73\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 22\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhbase0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.Storage/storageAccounts/shiyiplhbase0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hbase-01-2023-03-20t02-57-30-182z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.HDInsight/clusters/shiyi-pl-hdp-3\",\r\n \"name\": \"shiyi-pl-hdp-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7d83c57b-727d-4610-b944-76bed3845d6e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"75d7946e29ae42c0b5be6919c1569cf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:30:56.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhdp3hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.Storage/storageAccounts/shiyiplhdp3hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hdp-3-2023-03-10t07-28-45-657z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hive-01\",\r\n \"name\": \"shiyi-pl-hive-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"1614b7e9-b8f2-439e-a31c-a9c568a69f39\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"e7f7e90b1ab34b6a8ab3d5475f3f3eb6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:10:23.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhive01hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.Storage/storageAccounts/shiyiplhive01hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hive-01-2023-03-20t03-06-54-850z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-01\",\r\n \"name\": \"shiyi-pl-kafka-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8f76ee5e-304f-4833-a2a0-725661b34f13\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"c8f68a7bb80b4f7b9dc5c2033af2da38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T05:44:19.98\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafka0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.Storage/storageAccounts/shiyiplkafka0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-01-2023-03-20t05-41-36-217z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-02\",\r\n \"name\": \"shiyi-pl-kafka-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"014feb11-1c70-4766-85b7-91f10423540d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"kafka\",\r\n \"componentVersion\": {\r\n \"kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"45d348febd6440b89502cb184a0ce201\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T09:33:10.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafkasa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.Storage/storageAccounts/shiyiplkafkasa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "348e7d17-5391-40ce-90b3-efb0178514fa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "7bc6d74c-e95d-49a9-a66e-8a0b40fc6c0d", - "29c9901a-219a-4f4c-b39d-6a1067501ca2", - "f170615c-5716-43b6-8016-926d0aaf6ba9", - "1f022eec-dc85-4dc3-9e9c-23b1ec0da930", - "5a105bda-57f6-4760-a827-0ad48eb3c3a0", - "9acb6a8b-b10a-445f-a987-24ec44cc3d57", - "1d2c211a-4ed0-4710-9c3c-8654ab011c33", - "de3ebedd-c5e1-4111-8b5c-5625a00a669a", - "cbde641c-e7d1-4834-a0b3-c4e58dff6a39", - "3c115c06-29a4-4c5c-a587-e0c324001ccf", - "0da1fdde-d5e4-42c7-8ad3-32853ea81dad", - "6392f320-85af-4eff-8329-3cc7e06dc500", - "6b32ab8c-3c38-4c7a-a502-b346b6dc4545", - "c6efb8f0-4712-4e60-b554-b4111b9b9182" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "1a36f13d-733d-4afa-b110-c8d53cd601e4" - ], - "x-ms-correlation-request-id": [ - "1a36f13d-733d-4afa-b110-c8d53cd601e4" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091018Z:1a36f13d-733d-4afa-b110-c8d53cd601e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:10:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "280297" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.HDInsight/clusters/xinli1debugipsec\",\r\n \"name\": \"xinli1debugipsec\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"263aad4e-6765-495a-9ba6-c5edab28ef5a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a836521cad934fc89c517a90ae892a7a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-27T07:38:27.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1debugiphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.Storage/storageAccounts/xinli1debugiphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1debugipsec-2023-03-27t07-37-02-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.HDInsight/clusters/test-denyinbound\",\r\n \"name\": \"test-denyinbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Australia East\",\r\n \"etag\": \"17ac0a46-8e67-414f-bb3c-ca5c4bd35712\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6d2976b47ed470d9b5f11bb7d81db2b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-29T11:13:22.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdenyinbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Storage/storageAccounts/testdenyinbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-denyinbound-2023-03-29t11-04-30-897z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-outbount-cvrio4\",\r\n \"name\": \"hadoop-outbount-cvrio4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"b577a3fd-3386-4a5e-9149-a8ae7a809d12\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6fcf0aa36cce419da9a9e7222cf4533c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T12:55:12.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"192.168.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-outbount-cvrio4-2023-02-27t12-53-32-920z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-sentinel\",\r\n \"name\": \"hadoop-sentinel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"84ed899b-d6f7-481e-9976-f5859cc7ddce\",\r\n \"tags\": {\r\n \"SENTINAL\": \"DONTDELETE\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"053fc6fe2d3a4196b4ed8c5845b6a297\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-02T13:28:33.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-sentinel-2023-01-02t13-26-06-000z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdptestcluster1\",\r\n \"name\": \"hdptestcluster1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"6294e7eb-d942-4da0-bb22-69ac8aa8ab10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"711698d20f7d4e559b55785590fdc382\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T20:31:14.29\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdptestclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdptestclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdptestcluster1-2023-02-16t20-29-01-114z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.HDInsight/clusters/srinihadooptest\",\r\n \"name\": \"srinihadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"6799f8b5-f6b7-490b-bfce-c8e96c0a69d8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4a97d33a74354cb8b505314852fd67dc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T06:09:38.023\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinihadooptehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.Storage/storageAccounts/srinihadooptehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinihadooptest-2023-04-03t06-06-59-470z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumanatahivetest\",\r\n \"name\": \"sumanatahivetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"e0ab8abe-ea66-4786-a963-b8bd59cd68f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0752c11287947f6ad407dc35ef9f0a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T10:25:01.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 42\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumanatahivetest-2023-02-23t10-13-41-228z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantahadooptest\",\r\n \"name\": \"sumantahadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"3e2ef5dc-b06c-49f1-a0f5-1064c87c2904\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a3a347bee65443c5b4ffc02c295dca36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T06:32:06.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantahadooptestcluste-2023-03-24t06-28-54-846z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantatestsparkcluster\",\r\n \"name\": \"sumantatestsparkcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"eadbad16-940e-4ba1-8d10-e35b31b3038c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7571860162e244c9ac5f369c6a6182bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-26T02:19:04.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantatestsparkcluster-2023-02-26t02-15-03-734z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryahadoop\",\r\n \"name\": \"suryahadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"efc66412-384f-478b-98b8-b9c5370b1a9e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b6b32d28d9e4bcf81e16dcceb9d7c90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T09:31:39.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryahadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryahadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryahadoop-2023-02-16t09-30-23-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryaspark\",\r\n \"name\": \"suryaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"4e2c5b28-0661-4614-9557-60741cb699d4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f34179e0af574bd990a4a80e0f850420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T09:51:40.6\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryaspark-2023-02-23t09-49-41-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.HDInsight/clusters/andarmod-march2023\",\r\n \"name\": \"andarmod-march2023\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58889b01-8efb-45b7-a3da-3c1e8eea158f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b47d639b35f94be4955cc2dec8b2320d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-07T16:54:08.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodmarchhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.Storage/storageAccounts/andarmodmarchhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-march2023-2023-03-07t16-51-41-821z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyanipsectest1\",\r\n \"name\": \"chaoyanipsectest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e788daa3-aa02-49d3-b558-29403e44da93\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.5.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2207131812.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"367ac0f996a0421bbce329925e291b05\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-11T08:43:11.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyanipsecthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyanipsecthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyanipsectest-2022-08-11t08-39-02-672z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyantesting1\",\r\n \"name\": \"chaoyantesting1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"29167e66-afe2-4c5f-b8b7-00b165d9a72e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"43fb4c0684964cc09e2bb85da780e87b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-05-19T05:33:22.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyantestinhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyantestinhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyantesting-2022-05-19t05-31-45-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalhbasecluster\",\r\n \"name\": \"faisalhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c2d260b3-7c88-4293-a197-3bd01ba5cba9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"fdd6f2f04e214787a91ab03d8c70e43c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-09T18:59:29.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"Execution of the following scripts failed :- Custom\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalhbasecluster-2023-02-09t18-57-54-885z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalkafkacluster\",\r\n \"name\": \"faisalkafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6a22e8d4-9a64-4f7c-81e0-dbc10fdc4396\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"f96f014c44104e059b9b76cdf5786212\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:32:47.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalkafkaclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalkafkaclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalkafkaclist-2023-02-15t17-31-20-101z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsparkthreedotone\",\r\n \"name\": \"faisalsparkthreedotone\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"28e18c5f-d479-4420-a009-f239f0866d77\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"08a08b13feb040f695fe823f9cd4ce0b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T15:01:25.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsparkthhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsparkthhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsparkthreedotone-2023-02-16t15-00-02-589z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprk3dot1\",\r\n \"name\": \"faisalsprk3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3e344fb9-ae16-4de5-9d8a-88f3492631f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b19b209e520840a798c9fdf0853ca32d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-14T17:03:17.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprk3dohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprk3dohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprk3do-2023-02-14t17-01-00-509z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprkcluster3dot1\",\r\n \"name\": \"faisalsprkcluster3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"293ccb46-de93-4a32-a7db-1b7e7354530b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"40de045ed14244048ed41c11aa55ce6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:31:11.627\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprkcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprkcluster-2023-02-15t17-29-17-755z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.HDInsight/clusters/for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"name\": \"for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fbca8ad-f6d9-459a-85de-2d41bbc13acd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"218204ad46f5479f8700266ad08536ab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T02:22:59.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"forhditestspahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.Storage/storageAccounts/forhditestspahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"forhdi-test-spark-24-do-2023-02-15t02-20-51-216z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104\",\r\n \"name\": \"hdi-ps-test6104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06f4fa0e-49e1-4429-bafc-172bd339a88c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ce61d77f01da41e59fdf3450538e3b61\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T08:55:37.377\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6104.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9049.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.Storage/storageAccounts/storagepstest9049\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test6104\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.HDInsight/clusters/hdi-spark-test-eastus\",\r\n \"name\": \"hdi-spark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"de91a5d7-3f91-49ad-a023-99cceacd47f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"46ee674f530e4c6eac0bf40ca8fa6b13\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T18:25:18.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-spark-test-eastus-2023-02-23t18-23-27-300z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.HDInsight/clusters/jacky-spart-cluster\",\r\n \"name\": \"jacky-spart-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f93e581f-303e-40f6-aa2e-e2af037d2015\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ed0cbe2a53f6451a9a9a51943b3b7e4c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 1,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:34:56.1\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jackyspartcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.Storage/storageAccounts/jackyspartcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jacky-spart-cluster-2023-03-10t07-31-05-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/kafkajartest\",\r\n \"name\": \"kafkajartest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5dba8150-35d1-4431-9a33-1f6e645fb976\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"afa6e9ba6cb04b3dbb487637e4b4971c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T15:56:24.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafkajartesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/kafkajartesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafkajartest-2023-03-24t15-54-14-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/rampuvhbasecluster\",\r\n \"name\": \"rampuvhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"112945a7-a3d1-4600-8ae7-1d8f03309d10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"cce431c503424ea5a3c0d103329b7542\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-17T22:57:31.78\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rampuvhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/rampuvhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"rampuvhbasecluster-2023-01-17t22-44-44-409z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.HDInsight/clusters/shankarhadooptestcluster\",\r\n \"name\": \"shankarhadooptestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06e26256-25d4-4fba-9648-30f7078f0840\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c164b1edd07f4b3fbb0787d101784942\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T01:28:16.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shankarhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shankarhadoop-2023-03-23t01-23-49-690z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n },\r\n {\r\n \"name\": \"shankarhadoophdistorage2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark2d4\",\r\n \"name\": \"spark2d4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1153c11a-2a85-46e7-a734-52015dc5868d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c883f1ec21bc4c849523971654062efd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T07:42:07.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark2d4hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark2d4hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark2d4-2023-02-15t07-39-53-493z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark3d1\",\r\n \"name\": \"spark3d1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4684704b-9b54-4c86-af1c-7ef79b87b2aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7e791962c38f418b9474926b349621df\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-08T09:41:23.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark3d1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark3d1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark3d1-2023-03-08t09-39-29-001z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.HDInsight/clusters/sparkclustertest\",\r\n \"name\": \"sparkclustertest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8b31425f-33d6-4fb4-a949-8ecf8ab6931b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a49afaa3cee6473ea18436341998a8ca\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T05:40:39.997\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparkclusterteststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.Storage/storageAccounts/sparkclusterteststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparkclustertest-2023-02-20t05-37-29-162z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/sparktezviewtesting\",\r\n \"name\": \"sparktezviewtesting\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"51679a92-9088-4c04-a123-98b0d47a2f1f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"52575b0c9da14a91b6b0164b881fc0bd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T21:40:20.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparktezviewthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/sparktezviewthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparktezviewtesting-2023-04-03t21-38-23-344z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.HDInsight/clusters/sultan-hdi-cluster-1\",\r\n \"name\": \"sultan-hdi-cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8c758461-3e41-4c18-a9f3-5ce77e05a7bf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"63513e3e784441259bb73ad58c602241\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T15:51:03.267\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sultanhdiclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Storage/storageAccounts/sultanhdiclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sultan-hdi-cluster-2023-04-03t15-44-34-333z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.HDInsight/clusters/testhadoopv-rchandekar\",\r\n \"name\": \"testhadoopv-rchandekar\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"517c95d3-0333-442e-90fc-49c3aa0474c5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbdf8584bd7146bfa881a9f6d0edb126\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-19T09:11:15.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhadoopvrchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.Storage/storageAccounts/testhadoopvrchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhadoopv-rchandekar-2023-02-19t09-08-45-240z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/testsprk1\",\r\n \"name\": \"testsprk1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"80c39751-b509-48cc-b33b-f426446131c6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"00161d115cb043148e4ee70f3480841a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-22T15:55:55.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsprk1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/testsprk1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testsprk1-2023-03-22t15-53-40-199z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut_res_group_extremelengthextremelengthextremelengthextremelengthextremelengthextremelen/providers/Microsoft.HDInsight/clusters/wut-cluster-extremelengthextremelengt1\",\r\n \"name\": \"wut-cluster-extremelengthextremelengt1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ef9588d7-7391-4786-ac73-8a3bd685c737\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3438ce92023a43bfb69f13dd19abe1a1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-03T07:59:34.263\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-cluster-extremeleng-2023-03-03t07-50-04-213z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi1\",\r\n \"name\": \"wut-msi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"cbe06749-73db-43d4-bc7d-c659f66fae76\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3ab1d1b9f8f74bfe9e47b7f47bb2d484\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T10:21:20.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi1-2023-02-16t10-18-25-176z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi-with-disk\",\r\n \"name\": \"wut-msi-with-disk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"abce6322-b4bf-459b-8bf2-76d00b710b0b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"463aa4295be340609178d8503f319c5e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T07:17:39.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi-with-disk-2023-02-20t07-16-09-847z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1adls04191\",\r\n \"name\": \"x1adls04191\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b07b7393-e919-4fa3-a498-53a294c6c378\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"8e19fc8c328c4078aeaee5eead0dfba3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-04-19T05:40:17.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1adlsgen20419.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1adlsgen20419\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/x1usermsi0924\",\r\n \"key\": null,\r\n \"fileSystem\": \"x1adls04191fs\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/microsoft.managedidentity/userassignedidentities/x1usermsi0924\": {\r\n \"principalId\": \"048a9639-b7e1-4671-b9aa-2bab056c5b3b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.HDInsight/clusters/xinli1agentdebug\",\r\n \"name\": \"xinli1agentdebug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f2a8f840-0c8b-4588-af98-c0471c75f525\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e231aeff71145208dfd23b216e5167c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-28T02:48:54.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.39.1.25\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1agentdehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Storage/storageAccounts/xinli1agentdehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1agentdebug-2023-02-28t02-46-13-138z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-ssh-test\",\r\n \"name\": \"yalu-ssh-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"11482072-35bb-4f70-8c7c-d83fbd365235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"535fba725345441f84453158ed58bb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-03-28T05:51:27.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusshtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yalusshtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-ssh-test-2022-03-28t05-50-12-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yaluversiontest\",\r\n \"name\": \"yaluversiontest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8a084b25-3fdf-41dc-8524-ff314d5736eb\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2207131812.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"165dba2239b4435fb837bbb28cd94562\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-26T04:01:17.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluversiontehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluversiontehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yaluversiontest-2022-08-26t03-59-45-628z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweiuseprod\",\r\n \"name\": \"ziweiuseprod\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"a1c924a7-ef70-424c-a707-3acea34ed284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f5ed2b902a8c4148aaa06b2083c5fcf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-20T13:26:43.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweiuseprodhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweiuseprodhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweiuseprod-2022-02-20\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdihiveinteractivequery\",\r\n \"name\": \"hdihiveinteractivequery\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"e0406da8-4e88-47be-9046-bd73cc55730a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b630111eea894ea2b83b9927fd696708\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-06T19:40:13.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 18\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdihiveinterahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdihiveinterahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdihiveinteractivequery-2023-01-06t19-33-23-190z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.HDInsight/clusters/jairokafkacluster\",\r\n \"name\": \"jairokafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"72468a3d-3ff2-41a8-a319-0380807b9fda\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e4d6eaf7f2a84e9c8f73ecf5f916659c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T17:58:43.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jairokafkacluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.Storage/storageAccounts/jairokafkacluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jairokafkacluster-2023-02-27t17-54-29-913z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/zzzz-shangwei-test-pe\",\r\n \"name\": \"zzzz-shangwei-test-pe\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bd656217-7df4-4dbd-8767-deb0aa1007b5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2208310943.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"01bc6a206aea46a0844a6ba5e4c1e4ce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-09-28T11:53:42.887\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-test-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"asd-shangwei-test-pe-2022-09-28t11-39-57-881z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-test-msi\": {\r\n \"principalId\": \"2f5a5662-86b4-4c5f-a3b8-eba4db9b5ee0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.HDInsight/clusters/hiveserverinteractivetestfeb20\",\r\n \"name\": \"hiveserverinteractivetestfeb20\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"6cabab4b-9e77-4a77-b9f6-e36fbb52d701\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f3518a9df252426a87aaabe174d34549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T04:55:42.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hiveserverinthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.Storage/storageAccounts/hiveserverinthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hiveserverinte-2023-02-20t04-52-17-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.HDInsight/clusters/shangwei-poc-hdi\",\r\n \"name\": \"shangwei-poc-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4dc7b507-2bf7-47dd-baf5-fe0fd82a7718\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e97453096a1423fae7bf95c28faf715\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T13:24:27.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipochdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Storage/storageAccounts/shangweipochdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-poc-hdi-2023-02-15t13-22-36-476z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.HDInsight/clusters/test-outbound\",\r\n \"name\": \"test-outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"6feb5fe3-fa25-4116-b17b-4d0771b02ff3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"aa331a83baf348149ce4f24b5ab04f7e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-14T09:42:47.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.3.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsheinoutbound.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Storage/storageAccounts/testsheinoutbound\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-outbound-2023-03-14t09-36-58-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweinewregion\",\r\n \"name\": \"ziweinewregion\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany North\",\r\n \"etag\": \"fcd8e6b6-92bf-4c33-a1ae-7fddaec7a588\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b4a777151b6a4402bc22c9d9224d01a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-06-09T06:27:54.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweinewregiohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweinewregiohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweinewregion-2022-06-09t06-26-13-110z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip1\",\r\n \"name\": \"wuttesttip1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"c643f24b-ab3b-446a-a944-cc22976b6d5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6878300ba5904fee8d37ea4c49fd657e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T08:05:36.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220830tip1\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip2\",\r\n \"name\": \"wuttesttip2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c6a1e318-6b1a-4ee7-9678-3c45a460054a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5022c17e86c04151b52efa226c781236\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T09:04:25.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220831tip2\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestec2023021501\",\r\n \"name\": \"zzytestec2023021501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"f80298a0-42c9-45fb-bcbd-c21949a368e6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302140238.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab068287b1c54e2e86f3cd009a2994f7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-02-15T05:51:53.337\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestec2023hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestec2023hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestec20230214-2023-02-15t05-48-55-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytesteccert003\",\r\n \"name\": \"zzytesteccert003\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"717d837f-3ba3-4b6a-8316-488824d78c8a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"926003a85ef746a79582414d9d0f8aef\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-01-30T08:53:33.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesteccerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesteccerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytesteccert003-2023-01-30t08-52-19-685z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.HDInsight/clusters/alaw-hadoop\",\r\n \"name\": \"alaw-hadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"a644024e-45da-4b23-8347-7ccadb095d46\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"acf2f5f3b77d49eda85a0d2ba1854d3e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-02T02:05:48.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"alawhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.Storage/storageAccounts/alawhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"alaw-hadoop-2023-03-02t02-05-00-094z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy12testclimsgraph\",\r\n \"name\": \"zzy12testclimsgraph\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b1954f3b-435e-4d0e-8129-4e82dd07e189\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"30cbd2b68eaf4d899a1f88852ae30d0a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-05-18T04:00:46.723\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://lanjuntesthdihdistorage.blob.core.windows.net/ssh/changecredentials.sh. Exception message: Script URI cannot be retrieved correctly. HTTP Status code: Conflict.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy12testclimsgraph\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-01\",\r\n \"name\": \"shiyi-pl-hadoop-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29990d6a-6caa-4b11-82f6-30fea35a6fc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c2e3babae5ec4ee08a36c2c90894eced\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:41:45.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 8\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa01.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa01\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-01\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-02\",\r\n \"name\": \"shiyi-pl-hadoop-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"fdf7f0f4-800a-45fc-8b4f-5357b8b1c3d2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2fd6536c8ce148bda284f73d7444d400\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f8\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:46:03.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-03\",\r\n \"name\": \"shiyi-pl-hadoop-03\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"3b96fb85-fa13-40f2-8abe-901ca94902e0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"11f0972bacd44965a373acd717924ecd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f16\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:14:35.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa03.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa03\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-03\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-04\",\r\n \"name\": \"shiyi-pl-hadoop-04\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"83d4b2bd-a438-4884-b578-07fd80427e3d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c1fc40e15a2d41dfab258e833e6ba850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:16:52.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa04.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa04\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-04\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-05\",\r\n \"name\": \"shiyi-pl-hadoop-05\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"c4b9f731-3773-4ff7-b484-5b0ff3394ff7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c60d7a208817420d8320be7c677ab2f2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:24:54.443\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 128\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa05.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa05\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-05\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-06\",\r\n \"name\": \"shiyi-pl-hadoop-06\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"302f52c5-59fc-4636-938d-d491fe9920fc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8247d20bc8e448279746c2b62ce805b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:19:35.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa06.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa06\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-06\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-07\",\r\n \"name\": \"shiyi-pl-hadoop-07\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f4ef091a-a24c-417c-9962-bcfc8b02de8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"239c19a2c1554ed7862044e0e4703f22\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:37:41.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa07.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa07\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-07\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-08\",\r\n \"name\": \"shiyi-pl-hadoop-08\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f76467ac-9a10-4174-b85a-e96845254047\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"d8fda12bd8b444b186f37dea68622d31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:39:46.89\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa08.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa08\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-08\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-09\",\r\n \"name\": \"shiyi-pl-hadoop-09\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29bfd3d6-d1bb-4b99-9bce-f4c149495311\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b0602bd423544d729d56f6dd50a5fe78\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:15.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa09.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa09\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-09\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-10\",\r\n \"name\": \"shiyi-pl-hadoop-10\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8e41f979-734a-47e5-a6a6-ef6a80a2a9df\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1b548cbfb8b24d46a360df3d6ccf07c8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:29.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa10.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa10\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-10\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-11\",\r\n \"name\": \"shiyi-pl-hadoop-11\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"d6696882-f688-4e87-bd74-b7e51b809d79\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4c8e5b20edca4aef98d5590715a9dd2c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:10.573\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa11.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa11\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-11\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-12\",\r\n \"name\": \"shiyi-pl-hadoop-12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7620fa29-cc62-4974-8540-bdfa2dc5f878\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9d2d4967c7a14a22ae8718988b6caa2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:25.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa12.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa12\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-12\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hbase-01\",\r\n \"name\": \"shiyi-pl-hbase-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8db0b47e-ec70-47c0-bfc8-1dec22d35b87\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"3b5e5a78385a4c0da678b1d30c0ca0b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:03:24.73\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 22\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhbase0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.Storage/storageAccounts/shiyiplhbase0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hbase-01-2023-03-20t02-57-30-182z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.HDInsight/clusters/shiyi-pl-hdp-3\",\r\n \"name\": \"shiyi-pl-hdp-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7d83c57b-727d-4610-b944-76bed3845d6e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"75d7946e29ae42c0b5be6919c1569cf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:30:56.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhdp3hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.Storage/storageAccounts/shiyiplhdp3hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hdp-3-2023-03-10t07-28-45-657z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hive-01\",\r\n \"name\": \"shiyi-pl-hive-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"1614b7e9-b8f2-439e-a31c-a9c568a69f39\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"e7f7e90b1ab34b6a8ab3d5475f3f3eb6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:10:23.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhive01hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.Storage/storageAccounts/shiyiplhive01hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hive-01-2023-03-20t03-06-54-850z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-01\",\r\n \"name\": \"shiyi-pl-kafka-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8f76ee5e-304f-4833-a2a0-725661b34f13\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"c8f68a7bb80b4f7b9dc5c2033af2da38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T05:44:19.98\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafka0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.Storage/storageAccounts/shiyiplkafka0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-01-2023-03-20t05-41-36-217z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-02\",\r\n \"name\": \"shiyi-pl-kafka-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"014feb11-1c70-4766-85b7-91f10423540d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"kafka\",\r\n \"componentVersion\": {\r\n \"kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"45d348febd6440b89502cb184a0ce201\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T09:33:10.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafkasa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.Storage/storageAccounts/shiyiplkafkasa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/configurations/core-site?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9jb25maWd1cmF0aW9ucy9jb3JlLXNpdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f379cc77-b981-49e2-aa73-f504ace3ed95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "32" ] }, - "RequestBody": "", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2419,89 +32,20 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "c79e470e-2dc0-49f7-be7b-1223f31737b9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4f87f76b-439f-4de1-b0a9-a2b83aec191f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T090907Z:4f87f76b-439f-4de1-b0a9-a2b83aec191f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:09:07 GMT" - ], - "Content-Length": [ - "152" - ], - "Content-Type": [ - "application/json; charset=Windows-1252" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"fs.defaultFS\": \"wasb://hdi-ps-test6104@storagepstest9049.blob.core.windows.net\",\r\n \"fs.azure.account.key.storagepstest9049.blob.core.windows.net\": \"*****\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/configurations/clusterIdentity?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9jb25maWd1cmF0aW9ucy9jbHVzdGVySWRlbnRpdHk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f379cc77-b981-49e2-aa73-f504ace3ed95" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" + "x-ms-failure-cause": [ + "gateway" ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "3b5d706d-bb4e-44bf-8278-337c38350350" - ], - "x-ms-hdi-served-by": [ - "eastus" + "d6c0bb4e-a92f-4268-9c57-889c32db8b61" ], "x-ms-correlation-request-id": [ - "4c2d2e45-abf9-46c4-837a-8d93f8459072" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "d6c0bb4e-a92f-4268-9c57-889c32db8b61" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T090908Z:4c2d2e45-abf9-46c4-837a-8d93f8459072" + "JAPANEAST:20230803T052539Z:d6c0bb4e-a92f-4268-9c57-889c32db8b61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2510,28 +54,28 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:09:08 GMT" + "Thu, 03 Aug 2023 05:25:38 GMT" ], "Content-Length": [ - "2" + "171" ], "Content-Type": [ - "application/json; charset=Windows-1252" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceGroupLocation\",\r\n \"message\": \"Invalid resource group location 'Japan East'. The Resource group already exists in location 'southcentralus'.\"\r\n }\r\n}", + "StatusCode": 409 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/roles/workernode/resize?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9yb2xlcy93b3JrZXJub2RlL3Jlc2l6ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1595/providers/Microsoft.Storage/storageAccounts/storagepstest7058?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDcwNTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "e66e2dfc-7d8d-4b97-ab27-d7947a2bcaf5" + "767a4720-2b6b-4bd5-9676-d9d9c489c025" ], "Accept-Language": [ "en-US" @@ -2539,17 +83,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "32" + "104" ] }, - "RequestBody": "{\r\n \"targetInstanceCount\": 3\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2558,163 +102,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/operationresults/02edebd9-29e9-436e-9439-8067e709a3de-0-r?api-version=2021-06-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/01440183-4f5c-4308-93f0-5860cd2e964e?monitor=true&api-version=2017-10-01" ], "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/02edebd9-29e9-436e-9439-8067e709a3de-0-r?api-version=2021-06-01" + "17" ], "x-ms-request-id": [ - "372d9f36-c644-4db6-b6a5-053772010eed" + "01440183-4f5c-4308-93f0-5860cd2e964e" ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7ab93a37-5b6e-4488-9a14-99340ad43be4" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T090910Z:7ab93a37-5b6e-4488-9a14-99340ad43be4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:09:10 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/azureasyncoperations/02edebd9-29e9-436e-9439-8067e709a3de-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9henVyZWFzeW5jb3BlcmF0aW9ucy8wMmVkZWJkOS0yOWU5LTQzNmUtOTQzOS04MDY3ZTcwOWEzZGUtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e66e2dfc-7d8d-4b97-ab27-d7947a2bcaf5" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e8482e71-e904-4b6b-b106-a15fcc8b75d8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], "x-ms-correlation-request-id": [ - "7cc550e7-6def-41cd-aa61-ab58329a1a80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "ec842007-b535-4f05-b24f-7d15fff40c10" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091010Z:7cc550e7-6def-41cd-aa61-ab58329a1a80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "JAPANEAST:20230803T052545Z:ec842007-b535-4f05-b24f-7d15fff40c10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:10:10 GMT" - ], - "Content-Length": [ - "22" + "Thu, 03 Aug 2023 05:25:45 GMT" ], "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104/operationresults/02edebd9-29e9-436e-9439-8067e709a3de-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwNC9vcGVyYXRpb25yZXN1bHRzLzAyZWRlYmQ5LTI5ZTktNDM2ZS05NDM5LTgwNjdlNzA5YTNkZS0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e66e2dfc-7d8d-4b97-ab27-d7947a2bcaf5" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "014c060e-b153-4397-a26a-86e913ff6c53" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "ff371714-4bae-48d4-882c-77e6aaf044e9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091010Z:ff371714-4bae-48d4-882c-77e6aaf044e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:10:10 GMT" + "text/plain; charset=utf-8" ], "Expires": [ "-1" @@ -2724,24 +142,18 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8336/providers/Microsoft.HDInsight/clusters/hdi-ps-test6104?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NjEwND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/01440183-4f5c-4308-93f0-5860cd2e964e?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8wMTQ0MDE4My00ZjVjLTQzMDgtOTNmMC01ODYwY2QyZTk2NGU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "348e7d17-5391-40ce-90b3-efb0178514fa" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2753,40 +165,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/475f90e1-82b5-4d3b-b25b-fe0c35d64494-0-r?api-version=2021-06-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/01440183-4f5c-4308-93f0-5860cd2e964e?monitor=true&api-version=2017-10-01" ], "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/475f90e1-82b5-4d3b-b25b-fe0c35d64494-0-r?api-version=2021-06-01" + "3" ], "x-ms-request-id": [ - "2c52517d-dde5-4cb5-8c18-84b7f1789faa" + "3299228a-82f7-424c-a853-157b1f5d802a" ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "380272c4-026f-415f-b3d9-6b19272a7c21" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091020Z:380272c4-026f-415f-b3d9-6b19272a7c21" + "x-ms-correlation-request-id": [ + "beef43c9-d310-4ff5-8e00-7150c50e845e" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T052602Z:beef43c9-d310-4ff5-8e00-7150c50e845e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:10:19 GMT" + "Thu, 03 Aug 2023 05:26:02 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" ], "Expires": [ "-1" @@ -2799,18 +208,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/475f90e1-82b5-4d3b-b25b-fe0c35d64494-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNDc1ZjkwZTEtODJiNS00ZDNiLWIyNWItZmUwYzM1ZDY0NDk0LTAtcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/01440183-4f5c-4308-93f0-5860cd2e964e?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8wMTQ0MDE4My00ZjVjLTQzMDgtOTNmMC01ODYwY2QyZTk2NGU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "348e7d17-5391-40ce-90b3-efb0178514fa" - ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2822,58 +228,58 @@ "no-cache" ], "x-ms-request-id": [ - "4f05eb5f-7ed7-4383-9970-6a22408f29d2" - ], - "x-ms-hdi-served-by": [ - "eastus" + "4cd478b4-7282-4279-9255-7838e913d086" ], - "x-ms-correlation-request-id": [ - "f53f1626-90df-4d24-9c9c-1b89694ab8d9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091120Z:f53f1626-90df-4d24-9c9c-1b89694ab8d9" + "x-ms-correlation-request-id": [ + "e32f712d-044d-4201-8bf9-d54d952950e3" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T052605Z:e32f712d-044d-4201-8bf9-d54d952950e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:11:19 GMT" + "Thu, 03 Aug 2023 05:26:05 GMT" ], "Content-Length": [ - "22" + "1393" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1595/providers/Microsoft.Storage/storageAccounts/storagepstest7058\",\r\n \"name\": \"storagepstest7058\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-08-03T05:25:40.7688549Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-08-03T05:25:40.7688549Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-08-03T05:25:40.6594851Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7058.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7058.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7058.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest7058.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7058-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7058-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7058-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/475f90e1-82b5-4d3b-b25b-fe0c35d64494-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy80NzVmOTBlMS04MmI1LTRkM2ItYjI1Yi1mZTBjMzVkNjQ0OTQtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1595/providers/Microsoft.Storage/storageAccounts/storagepstest7058/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QxNTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDcwNTgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "348e7d17-5391-40ce-90b3-efb0178514fa" + "2eaee3f7-b5c3-448e-bc4c-842524f57e84" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2885,46 +291,49 @@ "no-cache" ], "x-ms-request-id": [ - "ec1b80c4-84ae-4f47-91aa-440fba89fe93" + "409b28fc-fa8f-43f2-bb8f-883833f86840" ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "bb3e7f54-503e-46ea-ba54-8cbb5107e64a" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091120Z:bb3e7f54-503e-46ea-ba54-8cbb5107e64a" + "x-ms-correlation-request-id": [ + "6d18ee73-a70d-4b7c-a4a4-953edd219a25" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T052606Z:6d18ee73-a70d-4b7c-a4a4-953edd219a25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:11:20 GMT" + "Thu, 03 Aug 2023 05:26:06 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8336?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MzM2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test1595?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QxNTk1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "3e224339-5713-415a-ba7b-f50e36311fc4" + "6c1724fa-968e-4c09-9176-f1419747fb3e" ], "Accept-Language": [ "en-US" @@ -2932,8 +341,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2945,7 +354,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2954,13 +363,13 @@ "14999" ], "x-ms-request-id": [ - "65d32edf-762d-4620-b071-73fcfeba19ab" + "874b33b4-1a2b-4863-99bc-af7a8c364fb8" ], "x-ms-correlation-request-id": [ - "65d32edf-762d-4620-b071-73fcfeba19ab" + "874b33b4-1a2b-4863-99bc-af7a8c364fb8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091122Z:65d32edf-762d-4620-b071-73fcfeba19ab" + "JAPANEAST:20230803T055237Z:874b33b4-1a2b-4863-99bc-af7a8c364fb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2969,7 +378,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:11:21 GMT" + "Thu, 03 Aug 2023 05:52:37 GMT" ], "Expires": [ "-1" @@ -2982,15 +391,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3002,22 +411,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "4f3fd3df-c8c0-4466-95f4-c367c69fc6de" + "9b70f8b0-8fb0-4060-8d2e-7ccf52f87c00" ], "x-ms-correlation-request-id": [ - "4f3fd3df-c8c0-4466-95f4-c367c69fc6de" + "9b70f8b0-8fb0-4060-8d2e-7ccf52f87c00" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091137Z:4f3fd3df-c8c0-4466-95f4-c367c69fc6de" + "JAPANEAST:20230803T055253Z:9b70f8b0-8fb0-4060-8d2e-7ccf52f87c00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3026,7 +435,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:11:37 GMT" + "Thu, 03 Aug 2023 05:52:52 GMT" ], "Expires": [ "-1" @@ -3039,15 +448,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3059,22 +468,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "b72028ee-7cf5-43e2-9103-da86b4005242" + "988c1087-c39e-4b83-a919-ca814db08a52" ], "x-ms-correlation-request-id": [ - "b72028ee-7cf5-43e2-9103-da86b4005242" + "988c1087-c39e-4b83-a919-ca814db08a52" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091152Z:b72028ee-7cf5-43e2-9103-da86b4005242" + "JAPANEAST:20230803T055308Z:988c1087-c39e-4b83-a919-ca814db08a52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3083,7 +492,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:11:52 GMT" + "Thu, 03 Aug 2023 05:53:08 GMT" ], "Expires": [ "-1" @@ -3096,15 +505,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3116,22 +525,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "d7674efe-64e7-4c0a-997a-24d55976838f" + "018ce1dc-fc87-465c-8e5e-08dc35cf71c6" ], "x-ms-correlation-request-id": [ - "d7674efe-64e7-4c0a-997a-24d55976838f" + "018ce1dc-fc87-465c-8e5e-08dc35cf71c6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091207Z:d7674efe-64e7-4c0a-997a-24d55976838f" + "JAPANEAST:20230803T055323Z:018ce1dc-fc87-465c-8e5e-08dc35cf71c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3140,7 +549,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:12:07 GMT" + "Thu, 03 Aug 2023 05:53:23 GMT" ], "Expires": [ "-1" @@ -3153,15 +562,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3173,22 +582,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "ef54be62-79dc-4b65-8d5a-8fb2baa65ec9" + "0fb4615b-5037-40f1-aa5c-09141acf8a29" ], "x-ms-correlation-request-id": [ - "ef54be62-79dc-4b65-8d5a-8fb2baa65ec9" + "0fb4615b-5037-40f1-aa5c-09141acf8a29" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091222Z:ef54be62-79dc-4b65-8d5a-8fb2baa65ec9" + "JAPANEAST:20230803T055339Z:0fb4615b-5037-40f1-aa5c-09141acf8a29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3197,7 +606,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:12:22 GMT" + "Thu, 03 Aug 2023 05:53:38 GMT" ], "Expires": [ "-1" @@ -3210,15 +619,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3230,22 +639,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "18910ebe-ad59-4372-8958-b7dfc0e20324" + "ceb104d4-b97d-4652-a477-3411ecb480e5" ], "x-ms-correlation-request-id": [ - "18910ebe-ad59-4372-8958-b7dfc0e20324" + "ceb104d4-b97d-4652-a477-3411ecb480e5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091237Z:18910ebe-ad59-4372-8958-b7dfc0e20324" + "JAPANEAST:20230803T055354Z:ceb104d4-b97d-4652-a477-3411ecb480e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3254,7 +663,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:12:37 GMT" + "Thu, 03 Aug 2023 05:53:53 GMT" ], "Expires": [ "-1" @@ -3267,15 +676,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3287,22 +696,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "0fcab1ac-54b0-42f5-aa54-400df5c06b82" + "d3914c22-205e-4150-8f07-1bcc87102267" ], "x-ms-correlation-request-id": [ - "0fcab1ac-54b0-42f5-aa54-400df5c06b82" + "d3914c22-205e-4150-8f07-1bcc87102267" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091253Z:0fcab1ac-54b0-42f5-aa54-400df5c06b82" + "JAPANEAST:20230803T055409Z:d3914c22-205e-4150-8f07-1bcc87102267" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3311,7 +720,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:12:52 GMT" + "Thu, 03 Aug 2023 05:54:09 GMT" ], "Expires": [ "-1" @@ -3324,15 +733,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3344,22 +753,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "bd4097b4-1fb0-42b5-a339-2478daebf593" + "d777f28c-76d6-4be6-8c05-1fb03d1c7ede" ], "x-ms-correlation-request-id": [ - "bd4097b4-1fb0-42b5-a339-2478daebf593" + "d777f28c-76d6-4be6-8c05-1fb03d1c7ede" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091308Z:bd4097b4-1fb0-42b5-a339-2478daebf593" + "JAPANEAST:20230803T055425Z:d777f28c-76d6-4be6-8c05-1fb03d1c7ede" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3368,7 +777,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:13:07 GMT" + "Thu, 03 Aug 2023 05:54:24 GMT" ], "Expires": [ "-1" @@ -3381,15 +790,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3401,22 +810,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "7521cafe-6da2-40e7-8f92-f2a689f4f901" + "e2d4cf53-8d35-459a-9eea-0b6be11553a5" ], "x-ms-correlation-request-id": [ - "7521cafe-6da2-40e7-8f92-f2a689f4f901" + "e2d4cf53-8d35-459a-9eea-0b6be11553a5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091323Z:7521cafe-6da2-40e7-8f92-f2a689f4f901" + "JAPANEAST:20230803T055440Z:e2d4cf53-8d35-459a-9eea-0b6be11553a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3425,7 +834,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:13:22 GMT" + "Thu, 03 Aug 2023 05:54:40 GMT" ], "Expires": [ "-1" @@ -3438,15 +847,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3458,16 +867,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "988e8eaf-3603-48d9-9142-fa613836f468" + "32bd352f-baa6-4238-b391-c4cf77e6c286" ], "x-ms-correlation-request-id": [ - "988e8eaf-3603-48d9-9142-fa613836f468" + "32bd352f-baa6-4238-b391-c4cf77e6c286" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091338Z:988e8eaf-3603-48d9-9142-fa613836f468" + "JAPANEAST:20230803T055456Z:32bd352f-baa6-4238-b391-c4cf77e6c286" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3476,7 +885,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:13:37 GMT" + "Thu, 03 Aug 2023 05:54:55 GMT" ], "Expires": [ "-1" @@ -3489,15 +898,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgzMzYtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd6TXpZdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE1OTUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREUxT1RVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3509,16 +918,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-request-id": [ - "073ff3ee-dd1b-440a-9dd0-f2ee35fa43aa" + "726da75b-502e-425b-965e-183d07ba136d" ], "x-ms-correlation-request-id": [ - "073ff3ee-dd1b-440a-9dd0-f2ee35fa43aa" + "726da75b-502e-425b-965e-183d07ba136d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091338Z:073ff3ee-dd1b-440a-9dd0-f2ee35fa43aa" + "JAPANEAST:20230803T055456Z:726da75b-502e-425b-965e-183d07ba136d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3527,7 +936,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:13:38 GMT" + "Thu, 03 Aug 2023 05:54:55 GMT" ], "Expires": [ "-1" @@ -3542,9 +951,9 @@ ], "Names": { "Test-ClusterRelatedCommands": [ - "hdi-ps-test6104", - "group-ps-test8336", - "storagepstest9049" + "hdi-ps-test1378", + "group-ps-test1595", + "storagepstest7058" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCmkClusterRelatedCommands.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCmkClusterRelatedCommands.json deleted file mode 100644 index b5b4850f1646..000000000000 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCmkClusterRelatedCommands.json +++ /dev/null @@ -1,4336 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "28d37f7f-aa26-41c5-b56f-ca48fadb93c3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "e1f07097-7055-4acc-bdfb-995d7b5600e7" - ], - "x-ms-correlation-request-id": [ - "e1f07097-7055-4acc-bdfb-995d7b5600e7" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144103Z:e1f07097-7055-4acc-bdfb-995d7b5600e7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:41:03 GMT" - ], - "Content-Length": [ - "187" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041\",\r\n \"name\": \"group-ps-test6041\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.Storage/storageAccounts/storagepstest9398?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDkzOTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b757bfc6-32e2-4086-8117-0d204f420214" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.31" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "101" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/3dec41d9-45f5-4c8b-bf56-5350d630c236?monitor=true&api-version=2017-10-01" - ], - "Retry-After": [ - "17" - ], - "x-ms-request-id": [ - "3dec41d9-45f5-4c8b-bf56-5350d630c236" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "ccdbb71c-9d62-4139-968d-b85838089e5b" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144109Z:ccdbb71c-9d62-4139-968d-b85838089e5b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:41:08 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/3dec41d9-45f5-4c8b-bf56-5350d630c236?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8zZGVjNDFkOS00NWY1LTRjOGItYmY1Ni01MzUwZDYzMGMyMzY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4bfc60fa-99fc-4bb3-9fac-053084e8ed14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "4da16141-6923-48be-8f42-c091602ee4f6" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144126Z:4da16141-6923-48be-8f42-c091602ee4f6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:41:25 GMT" - ], - "Content-Length": [ - "1384" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.Storage/storageAccounts/storagepstest9398\",\r\n \"name\": \"storagepstest9398\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-03-17T14:41:08.8058572Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-03-17T14:41:08.8058572Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-17T14:41:08.6495773Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9398.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9398.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9398.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest9398.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9398-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9398-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9398-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.Storage/storageAccounts/storagepstest9398/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDkzOTgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e0af3953-db2a-4e85-a216-175f038e6e56" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b60c12d8-cc42-481c-800d-d23a28f22424" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "3a2f91d0-415f-458e-8956-9846043544b2" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144126Z:3a2f91d0-415f-458e-8956-9846043544b2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:41:26 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"ubFMGEhzefXyKoo8qaJjDl25Sc/wkYPzwpMhrFiN1a6qUw41+JtoCjs5TT0tf5bYQQcxKnq6elupODRzWwsD3Q==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"/aFgzQcyVPAEvzzdt+/bhTKN7fxYU6uoeVH0/SbMGZOhiesUo3axxiae0PwGinSCOOLVPJSklx5P0J9pnrEEsw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1bed25d-8442-4887-85f1-b17753aa8fc2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "5908c311-babc-4b0c-a0a8-f4adde8c1ffb" - ], - "x-ms-correlation-request-id": [ - "5908c311-babc-4b0c-a0a8-f4adde8c1ffb" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144126Z:5908c311-babc-4b0c-a0a8-f4adde8c1ffb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:41:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "187" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041\",\r\n \"name\": \"group-ps-test6041\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ami-ps-cmktest894?api-version=2018-11-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlZElkZW50aXR5L3VzZXJBc3NpZ25lZElkZW50aXRpZXMvYW1pLXBzLWNta3Rlc3Q4OTQ/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1bed25d-8442-4887-85f1-b17753aa8fc2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ManagedServiceIdentity.ManagedServiceIdentityClient/0.11.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ami-ps-cmktest894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "e19961b2-1950-4a5a-933f-abcb76777637" - ], - "x-ms-correlation-request-id": [ - "e19961b2-1950-4a5a-933f-abcb76777637" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144133Z:e19961b2-1950-4a5a-933f-abcb76777637" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:41:32 GMT" - ], - "Content-Length": [ - "453" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ami-ps-cmktest894\",\r\n \"name\": \"ami-ps-cmktest894\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"218619eb-3725-4aa4-bcad-f4e4ee0d5b4f\",\r\n \"clientId\": \"cffab30d-033f-4ce2-8b6c-4a0946e04858\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5646ab94-d94c-425a-aa5a-f0738082c2c1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "2af5df11-6c02-4e1c-a984-cd997ec76cb9" - ], - "x-ms-correlation-request-id": [ - "2af5df11-6c02-4e1c-a984-cd997ec76cb9" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144133Z:2af5df11-6c02-4e1c-a984-cd997ec76cb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:41:33 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "6640" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/tertatgsgasgasg\",\r\n \"name\": \"tertatgsgasgasg\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.KeyVault/vaults/nabikhch-test-kv\",\r\n \"name\": \"nabikhch-test-kv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.KeyVault/vaults/x1kvwmsi\",\r\n \"name\": \"x1kvwmsi\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.KeyVault/vaults/x1kv0925\",\r\n \"name\": \"x1kv0925\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nisgoel-devrp/providers/Microsoft.KeyVault/vaults/ngcerts\",\r\n \"name\": \"ngcerts\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/shangwei-testsas\",\r\n \"name\": \"shangwei-testsas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/shangweiml9680309920\",\r\n \"name\": \"shangweiml9680309920\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nisgoel-devrp/providers/Microsoft.KeyVault/vaults/ngcerts-billing\",\r\n \"name\": \"ngcerts-billing\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-developers/providers/Microsoft.KeyVault/vaults/hdi-devrp\",\r\n \"name\": \"hdi-devrp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-developers/providers/Microsoft.KeyVault/vaults/hdi-onboarding\",\r\n \"name\": \"hdi-onboarding\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/HDICP-ESP-ENV/providers/Microsoft.KeyVault/vaults/ESPENV\",\r\n \"name\": \"ESPENV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.KeyVault/vaults/zzytestkeyvault\",\r\n \"name\": \"zzytestkeyvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdiInternal-WestUS/providers/Microsoft.KeyVault/vaults/hdiwestus34e82\",\r\n \"name\": \"hdiwestus34e82\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/martin-rg/providers/Microsoft.KeyVault/vaults/mawolfenApKv\",\r\n \"name\": \"mawolfenApKv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/martin-rg/providers/Microsoft.KeyVault/vaults/mawolfenRbacKv\",\r\n \"name\": \"mawolfenRbacKv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdiInternal-EastUS/providers/Microsoft.KeyVault/vaults/hdieastus31e81\",\r\n \"name\": \"hdieastus31e81\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestrg/providers/Microsoft.KeyVault/vaults/mktestvalut123\",\r\n \"name\": \"mktestvalut123\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu6-ev2rp/providers/Microsoft.KeyVault/vaults/hdi-yalu6-test3\",\r\n \"name\": \"hdi-yalu6-test3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/HDI-EV2-Rollout-Test/providers/Microsoft.KeyVault/vaults/hdi-ev2-rollout-test1\",\r\n \"name\": \"hdi-ev2-rollout-test1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.KeyVault/vaults/karthik-cert-kv\",\r\n \"name\": \"karthik-cert-kv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.KeyVault/vaults/reddytest\",\r\n \"name\": \"reddytest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ngzerotouchtest/providers/Microsoft.KeyVault/vaults/ngcert123test\",\r\n \"name\": \"ngcert123test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.KeyVault/vaults/adkorlep-test\",\r\n \"name\": \"adkorlep-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karkrish/providers/Microsoft.KeyVault/vaults/byokkv1102\",\r\n \"name\": \"byokkv1102\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.KeyVault/vaults/zzykeyvaultforvmss\",\r\n \"name\": \"zzykeyvaultforvmss\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-cli/providers/Microsoft.KeyVault/vaults/testsynapsecmk\",\r\n \"name\": \"testsynapsecmk\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-cli/providers/Microsoft.KeyVault/vaults/testcmksoftdelete\",\r\n \"name\": \"testcmksoftdelete\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.KeyVault/vaults/adkorlep-test1\",\r\n \"name\": \"adkorlep-test1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.KeyVault/vaults/xinli1kvtest\",\r\n \"name\": \"xinli1kvtest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb24554d-1f95-4765-b571-cc74d2ef72f9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "8d23b348-0d0c-4bd3-b35d-69afa6a6db85" - ], - "x-ms-correlation-request-id": [ - "8d23b348-0d0c-4bd3-b35d-69afa6a6db85" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144212Z:8d23b348-0d0c-4bd3-b35d-69afa6a6db85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:11 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "6886" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/tertatgsgasgasg\",\r\n \"name\": \"tertatgsgasgasg\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.KeyVault/vaults/nabikhch-test-kv\",\r\n \"name\": \"nabikhch-test-kv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.KeyVault/vaults/x1kvwmsi\",\r\n \"name\": \"x1kvwmsi\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.KeyVault/vaults/x1kv0925\",\r\n \"name\": \"x1kv0925\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nisgoel-devrp/providers/Microsoft.KeyVault/vaults/ngcerts\",\r\n \"name\": \"ngcerts\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/shangwei-testsas\",\r\n \"name\": \"shangwei-testsas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/shangweiml9680309920\",\r\n \"name\": \"shangweiml9680309920\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nisgoel-devrp/providers/Microsoft.KeyVault/vaults/ngcerts-billing\",\r\n \"name\": \"ngcerts-billing\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-developers/providers/Microsoft.KeyVault/vaults/hdi-devrp\",\r\n \"name\": \"hdi-devrp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-developers/providers/Microsoft.KeyVault/vaults/hdi-onboarding\",\r\n \"name\": \"hdi-onboarding\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/HDICP-ESP-ENV/providers/Microsoft.KeyVault/vaults/ESPENV\",\r\n \"name\": \"ESPENV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.KeyVault/vaults/zzytestkeyvault\",\r\n \"name\": \"zzytestkeyvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdiInternal-WestUS/providers/Microsoft.KeyVault/vaults/hdiwestus34e82\",\r\n \"name\": \"hdiwestus34e82\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/martin-rg/providers/Microsoft.KeyVault/vaults/mawolfenApKv\",\r\n \"name\": \"mawolfenApKv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/martin-rg/providers/Microsoft.KeyVault/vaults/mawolfenRbacKv\",\r\n \"name\": \"mawolfenRbacKv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdiInternal-EastUS/providers/Microsoft.KeyVault/vaults/hdieastus31e81\",\r\n \"name\": \"hdieastus31e81\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestrg/providers/Microsoft.KeyVault/vaults/mktestvalut123\",\r\n \"name\": \"mktestvalut123\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu6-ev2rp/providers/Microsoft.KeyVault/vaults/hdi-yalu6-test3\",\r\n \"name\": \"hdi-yalu6-test3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/HDI-EV2-Rollout-Test/providers/Microsoft.KeyVault/vaults/hdi-ev2-rollout-test1\",\r\n \"name\": \"hdi-ev2-rollout-test1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.KeyVault/vaults/karthik-cert-kv\",\r\n \"name\": \"karthik-cert-kv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.KeyVault/vaults/reddytest\",\r\n \"name\": \"reddytest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ngzerotouchtest/providers/Microsoft.KeyVault/vaults/ngcert123test\",\r\n \"name\": \"ngcert123test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.KeyVault/vaults/adkorlep-test\",\r\n \"name\": \"adkorlep-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karkrish/providers/Microsoft.KeyVault/vaults/byokkv1102\",\r\n \"name\": \"byokkv1102\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.KeyVault/vaults/zzykeyvaultforvmss\",\r\n \"name\": \"zzykeyvaultforvmss\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-cli/providers/Microsoft.KeyVault/vaults/testsynapsecmk\",\r\n \"name\": \"testsynapsecmk\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-cli/providers/Microsoft.KeyVault/vaults/testcmksoftdelete\",\r\n \"name\": \"testcmksoftdelete\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.KeyVault/vaults/adkorlep-test1\",\r\n \"name\": \"adkorlep-test1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.KeyVault/vaults/xinli1kvtest\",\r\n \"name\": \"xinli1kvtest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8193d2fe-f36d-4b9b-8962-1c31dd660877" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "db5d2dc9-ee17-44b9-a3b9-d1e0c1da2b12" - ], - "x-ms-correlation-request-id": [ - "db5d2dc9-ee17-44b9-a3b9-d1e0c1da2b12" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144213Z:db5d2dc9-ee17-44b9-a3b9-d1e0c1da2b12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:12 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "6886" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/tertatgsgasgasg\",\r\n \"name\": \"tertatgsgasgasg\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.KeyVault/vaults/nabikhch-test-kv\",\r\n \"name\": \"nabikhch-test-kv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.KeyVault/vaults/x1kvwmsi\",\r\n \"name\": \"x1kvwmsi\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.KeyVault/vaults/x1kv0925\",\r\n \"name\": \"x1kv0925\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nisgoel-devrp/providers/Microsoft.KeyVault/vaults/ngcerts\",\r\n \"name\": \"ngcerts\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/shangwei-testsas\",\r\n \"name\": \"shangwei-testsas\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.KeyVault/vaults/shangweiml9680309920\",\r\n \"name\": \"shangweiml9680309920\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nisgoel-devrp/providers/Microsoft.KeyVault/vaults/ngcerts-billing\",\r\n \"name\": \"ngcerts-billing\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-developers/providers/Microsoft.KeyVault/vaults/hdi-devrp\",\r\n \"name\": \"hdi-devrp\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-developers/providers/Microsoft.KeyVault/vaults/hdi-onboarding\",\r\n \"name\": \"hdi-onboarding\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/HDICP-ESP-ENV/providers/Microsoft.KeyVault/vaults/ESPENV\",\r\n \"name\": \"ESPENV\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.KeyVault/vaults/zzytestkeyvault\",\r\n \"name\": \"zzytestkeyvault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdiInternal-WestUS/providers/Microsoft.KeyVault/vaults/hdiwestus34e82\",\r\n \"name\": \"hdiwestus34e82\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/martin-rg/providers/Microsoft.KeyVault/vaults/mawolfenApKv\",\r\n \"name\": \"mawolfenApKv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/martin-rg/providers/Microsoft.KeyVault/vaults/mawolfenRbacKv\",\r\n \"name\": \"mawolfenRbacKv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdiInternal-EastUS/providers/Microsoft.KeyVault/vaults/hdieastus31e81\",\r\n \"name\": \"hdieastus31e81\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestrg/providers/Microsoft.KeyVault/vaults/mktestvalut123\",\r\n \"name\": \"mktestvalut123\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu6-ev2rp/providers/Microsoft.KeyVault/vaults/hdi-yalu6-test3\",\r\n \"name\": \"hdi-yalu6-test3\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/HDI-EV2-Rollout-Test/providers/Microsoft.KeyVault/vaults/hdi-ev2-rollout-test1\",\r\n \"name\": \"hdi-ev2-rollout-test1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.KeyVault/vaults/karthik-cert-kv\",\r\n \"name\": \"karthik-cert-kv\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.KeyVault/vaults/reddytest\",\r\n \"name\": \"reddytest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ngzerotouchtest/providers/Microsoft.KeyVault/vaults/ngcert123test\",\r\n \"name\": \"ngcert123test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.KeyVault/vaults/adkorlep-test\",\r\n \"name\": \"adkorlep-test\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karkrish/providers/Microsoft.KeyVault/vaults/byokkv1102\",\r\n \"name\": \"byokkv1102\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.KeyVault/vaults/zzykeyvaultforvmss\",\r\n \"name\": \"zzykeyvaultforvmss\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-cli/providers/Microsoft.KeyVault/vaults/testsynapsecmk\",\r\n \"name\": \"testsynapsecmk\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-cli/providers/Microsoft.KeyVault/vaults/testcmksoftdelete\",\r\n \"name\": \"testcmksoftdelete\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.KeyVault/vaults/adkorlep-test1\",\r\n \"name\": \"adkorlep-test1\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.KeyVault/vaults/xinli1kvtest\",\r\n \"name\": \"xinli1kvtest\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3ZhdWx0LXBzLWNta3Rlc3Q0MzQ3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5646ab94-d94c-425a-aa5a-f0738082c2c1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "521" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-client-request-id": [ - "5646ab94-d94c-425a-aa5a-f0738082c2c1" - ], - "x-ms-keyvault-service-version": [ - "1.1.248.2" - ], - "x-ms-request-id": [ - "4359c962-e7c9-4acf-9131-17eddbfbc872" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "101c30cc-fb21-46d1-8ea4-4228ff0faf78" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144140Z:101c30cc-fb21-46d1-8ea4-4228ff0faf78" - ], - "Date": [ - "Wed, 17 Mar 2021 14:41:39 GMT" - ], - "Content-Length": [ - "651" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3ZhdWx0LXBzLWNta3Rlc3Q0MzQ3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"ec14b8ea-edc0-4a0e-9210-a3718e1eac68\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"list\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\"\r\n ],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb24554d-1f95-4765-b571-cc74d2ef72f9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1160" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-client-request-id": [ - "bb24554d-1f95-4765-b571-cc74d2ef72f9" - ], - "x-ms-keyvault-service-version": [ - "1.1.248.2" - ], - "x-ms-request-id": [ - "415cc77f-4207-4e0a-94a9-8e9835d19ece" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "0967a29e-89f9-4cc3-85dd-e5d1df46bbdb" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144213Z:0967a29e-89f9-4cc3-85dd-e5d1df46bbdb" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:12 GMT" - ], - "Content-Length": [ - "874" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"ec14b8ea-edc0-4a0e-9210-a3718e1eac68\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"list\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\"\r\n ],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3ZhdWx0LXBzLWNta3Rlc3Q0MzQ3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"ec14b8ea-edc0-4a0e-9210-a3718e1eac68\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"list\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\"\r\n ],\r\n \"storage\": []\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"218619eb-3725-4aa4-bcad-f4e4ee0d5b4f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\",\r\n \"Delete\"\r\n ],\r\n \"certificates\": [],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8193d2fe-f36d-4b9b-8962-1c31dd660877" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1598" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-client-request-id": [ - "8193d2fe-f36d-4b9b-8962-1c31dd660877" - ], - "x-ms-keyvault-service-version": [ - "1.1.248.2" - ], - "x-ms-request-id": [ - "11200cec-d416-4673-8063-9a59bb71c01d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-correlation-request-id": [ - "50d71564-3d5e-4f49-a16b-6701c1dc194d" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144214Z:50d71564-3d5e-4f49-a16b-6701c1dc194d" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:13 GMT" - ], - "Content-Length": [ - "1093" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"ec14b8ea-edc0-4a0e-9210-a3718e1eac68\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"list\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\"\r\n ],\r\n \"storage\": []\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"218619eb-3725-4aa4-bcad-f4e4ee0d5b4f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\",\r\n \"Delete\"\r\n ],\r\n \"certificates\": [],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3ZhdWx0LXBzLWNta3Rlc3Q0MzQ3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5646ab94-d94c-425a-aa5a-f0738082c2c1" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-client-request-id": [ - "5646ab94-d94c-425a-aa5a-f0738082c2c1" - ], - "x-ms-keyvault-service-version": [ - "1.1.248.2" - ], - "x-ms-request-id": [ - "5b337ccb-c72e-4c58-bbdb-c577033c39fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "4fd2a8fb-69c2-41f3-b832-42bbb4ebd09c" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144211Z:4fd2a8fb-69c2-41f3-b832-42bbb4ebd09c" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:10 GMT" - ], - "Content-Length": [ - "647" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3ZhdWx0LXBzLWNta3Rlc3Q0MzQ3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb24554d-1f95-4765-b571-cc74d2ef72f9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-client-request-id": [ - "bb24554d-1f95-4765-b571-cc74d2ef72f9" - ], - "x-ms-keyvault-service-version": [ - "1.1.248.2" - ], - "x-ms-request-id": [ - "8a74191d-91ed-4aaa-89db-75cf72854355" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "d0dfda0f-8d55-4df5-b3ae-621fe4f61158" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144212Z:d0dfda0f-8d55-4df5-b3ae-621fe4f61158" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:12 GMT" - ], - "Content-Length": [ - "647" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3ZhdWx0LXBzLWNta3Rlc3Q0MzQ3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8193d2fe-f36d-4b9b-8962-1c31dd660877" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-client-request-id": [ - "8193d2fe-f36d-4b9b-8962-1c31dd660877" - ], - "x-ms-keyvault-service-version": [ - "1.1.248.2" - ], - "x-ms-request-id": [ - "464815d7-cd46-485c-b87e-520c62a241cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "d6ff1cf9-936a-403d-b60b-0f57fd3add10" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144213Z:d6ff1cf9-936a-403d-b60b-0f57fd3add10" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:13 GMT" - ], - "Content-Length": [ - "874" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"ec14b8ea-edc0-4a0e-9210-a3718e1eac68\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"list\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\"\r\n ],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3ZhdWx0LXBzLWNta3Rlc3Q0MzQ3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6b99e851-4f9c-4848-bf4e-b822596a5541" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-client-request-id": [ - "6b99e851-4f9c-4848-bf4e-b822596a5541" - ], - "x-ms-keyvault-service-version": [ - "1.1.248.2" - ], - "x-ms-request-id": [ - "5bb6d46b-dc78-400b-835f-777a1eaba2d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "383335bc-a4f2-4f67-8381-3f0f7e4a1566" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144214Z:383335bc-a4f2-4f67-8381-3f0f7e4a1566" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:14 GMT" - ], - "Content-Length": [ - "1093" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"ec14b8ea-edc0-4a0e-9210-a3718e1eac68\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"list\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\"\r\n ],\r\n \"storage\": []\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"218619eb-3725-4aa4-bcad-f4e4ee0d5b4f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\",\r\n \"Delete\"\r\n ],\r\n \"certificates\": [],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3ZhdWx0LXBzLWNta3Rlc3Q0MzQ3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1da27f3f-9c7d-47f4-a4f5-8b17c95a74b4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-client-request-id": [ - "1da27f3f-9c7d-47f4-a4f5-8b17c95a74b4" - ], - "x-ms-keyvault-service-version": [ - "1.1.248.2" - ], - "x-ms-request-id": [ - "bd9ccfe7-f87d-437b-83bf-a43730e7cff6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "394ca21e-fc93-4781-a89e-3f16d6d07385" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145411Z:394ca21e-fc93-4781-a89e-3f16d6d07385" - ], - "Date": [ - "Wed, 17 Mar 2021 14:54:10 GMT" - ], - "Content-Length": [ - "1093" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.KeyVault/vaults/vault-ps-cmktest4347\",\r\n \"name\": \"vault-ps-cmktest4347\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"ec14b8ea-edc0-4a0e-9210-a3718e1eac68\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"create\",\r\n \"import\",\r\n \"delete\",\r\n \"list\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\"\r\n ],\r\n \"storage\": []\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"218619eb-3725-4aa4-bcad-f4e4ee0d5b4f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"UnwrapKey\",\r\n \"WrapKey\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"Set\",\r\n \"Delete\"\r\n ],\r\n \"certificates\": [],\r\n \"storage\": []\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"enableRbacAuthorization\": false,\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//keys/key-ps-cmktest4410/create?api-version=7.0", - "EncodedRequestUri": "Ly9rZXlzL2tleS1wcy1jbWt0ZXN0NDQxMC9jcmVhdGU/YXBpLXZlcnNpb249Ny4w", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.KeyVault.KeyVaultClient/3.0.520.10303" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "WWW-Authenticate": [ - "Bearer authorization=\"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\", resource=\"https://vault.azure.net\"" - ], - "x-ms-keyvault-region": [ - "East US" - ], - "x-ms-request-id": [ - "feb462ee-9603-4cac-b15c-f27ac5d3b362" - ], - "x-ms-keyvault-service-version": [ - "1.2.205.0" - ], - "x-ms-keyvault-network-info": [ - "conn_type=Ipv4;addr=167.220.233.40;act_addr_fam=InterNetwork;" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:15 GMT" - ], - "Content-Length": [ - "87" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"Unauthorized\",\r\n \"message\": \"Request is missing a Bearer or PoP token.\"\r\n }\r\n}", - "StatusCode": 401 - }, - { - "RequestUri": "//keys/key-ps-cmktest4410/create?api-version=7.0", - "EncodedRequestUri": "Ly9rZXlzL2tleS1wcy1jbWt0ZXN0NDQxMC9jcmVhdGU/YXBpLXZlcnNpb249Ny4w", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c8165e2d-9e8b-45d8-adb4-f67cfa3854e2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.KeyVault.KeyVaultClient/3.0.520.10303" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "135" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-keyvault-region": [ - "East US" - ], - "x-ms-client-request-id": [ - "c8165e2d-9e8b-45d8-adb4-f67cfa3854e2" - ], - "x-ms-request-id": [ - "1a16bb3f-6e2c-40cd-820c-d2b3972c68bf" - ], - "x-ms-keyvault-service-version": [ - "1.2.205.0" - ], - "x-ms-keyvault-network-info": [ - "conn_type=Ipv4;addr=167.220.233.40;act_addr_fam=InterNetwork;" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "673" - ] - }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://vault-ps-cmktest4347.vault.azure.net/keys/key-ps-cmktest4410/83164579fbea446db103cdb9e2369ad1\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"ufDdpAJ1-zzln2bgEd5Vhp6rlVLtMaJq2gjAasQ58uytmGTBsksue1Ud4lxYOVSFLhtKdVZlGUfqZgBIxsJaSD6uNvfutVF5UYaUyu_XBUfLYWNuUwv9aDvznsLWwHA5IQsly2ojBs0g2ZDF-pEM9KvSl-ZRZaEfBBlFfdmKemj1y9km43TT4p7JnL_l3nWt08CToQnDy348Qkeax9Z1_tyqXOQ9lTxZRyXp-y7b1FwxlDD-_jPhHE_9F7mihoBl-AVzy8eBoVfrVJ2cTmvX36j1_FIYUN9-7BpTHFoRrWGYJQKU--Gm1azmLclc11hGFGodTYyRmNzeGpRyUwD5cQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1615992138,\r\n \"updated\": 1615992138,\r\n \"recoveryLevel\": \"Recoverable+Purgeable\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/billingSpecs?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "SubscriptionManagementOperations" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "50362d53-38e8-4726-afaa-3e7d0cacfba4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "1d672b12-488d-4fc5-8989-e14f2e69a7f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144220Z:1d672b12-488d-4fc5-8989-e14f2e69a7f0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:20 GMT" - ], - "Content-Length": [ - "105836" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D15_v2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_F1\",\r\n \"STANDARD_F16\",\r\n \"STANDARD_F2\",\r\n \"STANDARD_F4\",\r\n \"STANDARD_F8\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E64is_v3\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\",\r\n \"Storm\",\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D15_V2\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D15_v2 (20 cores, 143360 MB)\",\r\n \"maxDataDiskCount\": 40,\r\n \"memoryInMb\": 143360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1024000,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_F1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F1 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 16384,\r\n \"webWorkerResourceDiskSizeInMb\": 16384\r\n },\r\n {\r\n \"name\": \"STANDARD_F16\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F16 (16 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 262144,\r\n \"webWorkerResourceDiskSizeInMb\": 262144\r\n },\r\n {\r\n \"name\": \"STANDARD_F2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 32768,\r\n \"webWorkerResourceDiskSizeInMb\": 32768\r\n },\r\n {\r\n \"name\": \"STANDARD_F4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F4 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 65536,\r\n \"webWorkerResourceDiskSizeInMb\": 65536\r\n },\r\n {\r\n \"name\": \"STANDARD_F8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F8 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 131072,\r\n \"webWorkerResourceDiskSizeInMb\": 131072\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"East US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9398.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-cmktest50734249\",\r\n \"key\": \"ubFMGEhzefXyKoo8qaJjDl25Sc/wkYPzwpMhrFiN1a6qUw41+JtoCjs5TT0tf5bYQQcxKnq6elupODRzWwsD3Q==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.Storage/storageAccounts/storagepstest9398\"\r\n }\r\n ]\r\n },\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net:443\",\r\n \"keyName\": \"key-ps-cmktest4410\",\r\n \"keyVersion\": \"83164579fbea446db103cdb9e2369ad1\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ami-ps-cmktest894\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ami-ps-cmktest894\": {}\r\n }\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2844" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"7541ce82-eb5c-484d-a6a9-0e771f95c736\"" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249?api-version=2018-06-01-preview" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "22ea3a84-58d5-4056-a26a-5f794a126817" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9845b586-3657-48fb-8db6-904c5fdd4a0c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144227Z:9845b586-3657-48fb-8db6-904c5fdd4a0c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:26 GMT" - ], - "Content-Length": [ - "2581" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249\",\r\n \"name\": \"hdi-ps-cmktest50734249\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7541ce82-eb5c-484d-a6a9-0e771f95c736\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a986d1f8b2f74aaa8d96ae2815fac814\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-03-17T14:42:25.8\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net:443\",\r\n \"keyName\": \"key-ps-cmktest4410\",\r\n \"keyVersion\": \"83164579fbea446db103cdb9e2369ad1\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/microsoft.managedidentity/userassignedidentities/ami-ps-cmktest894\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9398.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.Storage/storageAccounts/storagepstest9398\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-cmktest50734249\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/microsoft.managedidentity/userassignedidentities/ami-ps-cmktest894\": {}\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "00943085-7d22-4084-84a4-fe06c033d733" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "14468755-b3ae-468b-b5c3-0574a979472b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144257Z:14468755-b3ae-468b-b5c3-0574a979472b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:42:56 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "1655ede1-2524-4940-bdde-bfe03db2ae36" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "17258dfe-84bb-4dc5-9a97-e309c7d1dff3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144328Z:17258dfe-84bb-4dc5-9a97-e309c7d1dff3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:43:27 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "e866b29a-6e09-4867-afc7-336e982da7f7" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9e1caa6a-b307-4698-9ab5-b323f3a5169e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144358Z:9e1caa6a-b307-4698-9ab5-b323f3a5169e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:43:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "787cd630-42ee-4fb6-83cd-2a157ae99378" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "dc1ef28e-3b19-4d34-a6e3-c90ad3f664dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144429Z:dc1ef28e-3b19-4d34-a6e3-c90ad3f664dd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:44:28 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "f41f78a2-8c05-4861-99a9-b5589c8fc322" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8452a8fb-79d9-4acd-86b8-2957ccc23330" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144459Z:8452a8fb-79d9-4acd-86b8-2957ccc23330" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:44:58 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "47fa41ca-1ec5-4dbf-a14a-3f448d470747" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5af8fa17-c327-4092-9c95-d450524f8f38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144529Z:5af8fa17-c327-4092-9c95-d450524f8f38" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:45:29 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "7b0ecc99-e66f-4186-af25-b68ff3d1a7ad" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "17d4f2a8-7cbe-43d1-8d5c-faa8aabf2d55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144600Z:17d4f2a8-7cbe-43d1-8d5c-faa8aabf2d55" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:45:59 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "2238234b-c456-4578-b24e-1bc8c01f48a1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b6e86d27-4481-41ff-9f3d-b0611d20f60a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144630Z:b6e86d27-4481-41ff-9f3d-b0611d20f60a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:46:29 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "bdcfe363-4c28-4b66-a825-ea037e8ac2d2" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3c03c91b-6ecc-43c1-ad2c-cc4fda5d00dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144701Z:3c03c91b-6ecc-43c1-ad2c-cc4fda5d00dc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:47:00 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "4e89af51-920b-4769-bf48-c0310e4f4a4f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a1d59434-98a1-4cd3-be83-1403089fdcf1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144731Z:a1d59434-98a1-4cd3-be83-1403089fdcf1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:47:30 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "a6d915d9-b473-4462-adc4-08c9bd4abb09" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d2d7ce3f-046a-4413-88ad-201f60742903" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144803Z:d2d7ce3f-046a-4413-88ad-201f60742903" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:48:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "3bf73d3e-2dc5-451a-a933-7ce3423fbec4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "731ed6c9-44ee-453b-aa9f-26933304f8b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144833Z:731ed6c9-44ee-453b-aa9f-26933304f8b5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:48:32 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "dc447c62-36df-4f81-a45a-86ee98bb0346" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e4254b9d-02d0-4406-a5a4-1bbfe95a6c41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144904Z:e4254b9d-02d0-4406-a5a4-1bbfe95a6c41" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:49:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "4dbfb6f0-1e92-4a51-a03d-95fb38d82bb3" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b70d6b48-1b84-490a-b68d-f485f24de16c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T144934Z:b70d6b48-1b84-490a-b68d-f485f24de16c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:49:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "ab936f45-92c6-4653-be9e-9bd8150a960c" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "26f135e9-d951-434e-85de-a134931ed5ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145004Z:26f135e9-d951-434e-85de-a134931ed5ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:50:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "4d21eb1f-1fb0-422e-b12e-f7d462813577" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "04c4b1b1-dc8e-4007-9883-1a83b20be397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145035Z:04c4b1b1-dc8e-4007-9883-1a83b20be397" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:50:34 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "1fa8f00c-0b21-4907-afc4-1808af4ba024" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "064545fe-c083-485f-9bd5-a2e10b160ec6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145105Z:064545fe-c083-485f-9bd5-a2e10b160ec6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:51:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "1e5daed5-1991-4f8b-8a6c-12d485204c92" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "632f6949-a770-4f91-8984-7a1d6212d4a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145136Z:632f6949-a770-4f91-8984-7a1d6212d4a7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:51:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "70315fc4-733f-4a16-9cfc-0986d476df03" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "c5eff082-ce49-4c7b-8cdb-22580036ac71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145206Z:c5eff082-ce49-4c7b-8cdb-22580036ac71" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:52:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "d0ff8a3c-c72f-4004-8f59-d3ba9dfecfad" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6b4031a8-387b-458e-8437-cf5eff398f33" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145237Z:6b4031a8-387b-458e-8437-cf5eff398f33" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:52:37 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "9f84b2c8-f61a-4b1e-8c28-9181550373ce" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "448cb904-8969-417c-83b3-264391049da8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145307Z:448cb904-8969-417c-83b3-264391049da8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:53:07 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "d37b5c69-0b1c-43e7-9490-2eaf18ebd7a1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "140e046d-bab1-43bd-9484-dc4b083b6137" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145339Z:140e046d-bab1-43bd-9484-dc4b083b6137" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:53:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvY3JlYXRlP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "8a6f6eca-c672-475c-bb8e-7ce99e683d01" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b9ae4f9a-1e61-4e5d-a0ff-570f524cd02e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145409Z:b9ae4f9a-1e61-4e5d-a0ff-570f524cd02e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:54:09 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a854a3-4075-49ee-bd9f-eca8825f7a1e" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "a9c06fd8-5af0-42ca-a634-5005a6976fce" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7188fae3-1959-45d1-814f-43581577e7b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145410Z:7188fae3-1959-45d1-814f-43581577e7b3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:54:09 GMT" - ], - "Content-Length": [ - "2915" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249\",\r\n \"name\": \"hdi-ps-cmktest50734249\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7541ce82-eb5c-484d-a6a9-0e771f95c736\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a986d1f8b2f74aaa8d96ae2815fac814\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-03-17T14:42:25.8\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-cmktest50734249-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-cmktest50734249.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net:443\",\r\n \"keyName\": \"key-ps-cmktest4410\",\r\n \"keyVersion\": \"83164579fbea446db103cdb9e2369ad1\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/microsoft.managedidentity/userassignedidentities/ami-ps-cmktest894\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9398.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.Storage/storageAccounts/storagepstest9398\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-cmktest50734249\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/microsoft.managedidentity/userassignedidentities/ami-ps-cmktest894\": {\r\n \"principalId\": \"cffab30d-033f-4ce2-8b6c-4a0946e04858\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e655e85-4a9a-45ff-aee1-c609625ef16b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "6caa33b0-749e-482b-be66-678460ef057f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0288cfc3-0f11-496b-8410-229f3ab9acd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145721Z:0288cfc3-0f11-496b-8410-229f3ab9acd8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:57:21 GMT" - ], - "Content-Length": [ - "2918" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249\",\r\n \"name\": \"hdi-ps-cmktest50734249\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7541ce82-eb5c-484d-a6a9-0e771f95c736\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a986d1f8b2f74aaa8d96ae2815fac814\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-03-17T14:42:25.8\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-cmktest50734249-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-cmktest50734249.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net:443\",\r\n \"keyName\": \"newkey-ps-cmktest2118\",\r\n \"keyVersion\": \"97c89d17cb7e43a8b074e68526451310\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/microsoft.managedidentity/userassignedidentities/ami-ps-cmktest894\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9398.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.Storage/storageAccounts/storagepstest9398\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-cmktest50734249\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/microsoft.managedidentity/userassignedidentities/ami-ps-cmktest894\": {\r\n \"principalId\": \"cffab30d-033f-4ce2-8b6c-4a0946e04858\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//keys/newkey-ps-cmktest2118/create?api-version=7.0", - "EncodedRequestUri": "Ly9rZXlzL25ld2tleS1wcy1jbWt0ZXN0MjExOC9jcmVhdGU/YXBpLXZlcnNpb249Ny4w", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e60b8582-bb00-4134-8794-1f893881ee67" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.KeyVault.KeyVaultClient/3.0.520.10303" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "135" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-keyvault-region": [ - "East US" - ], - "x-ms-client-request-id": [ - "e60b8582-bb00-4134-8794-1f893881ee67" - ], - "x-ms-request-id": [ - "1ca526e5-3d56-442c-b3b8-dc9052130f94" - ], - "x-ms-keyvault-service-version": [ - "1.2.205.0" - ], - "x-ms-keyvault-network-info": [ - "conn_type=Ipv4;addr=167.220.232.40;act_addr_fam=InterNetwork;" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "Strict-Transport-Security": [ - "max-age=31536000;includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:54:14 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "676" - ] - }, - "ResponseBody": "{\r\n \"key\": {\r\n \"kid\": \"https://vault-ps-cmktest4347.vault.azure.net/keys/newkey-ps-cmktest2118/97c89d17cb7e43a8b074e68526451310\",\r\n \"kty\": \"RSA\",\r\n \"key_ops\": [\r\n \"encrypt\",\r\n \"decrypt\",\r\n \"sign\",\r\n \"verify\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ],\r\n \"n\": \"0USjvLNTfjEvWdwkGDeJ_RDuCzbc75cyt3sxYRKpLr-96ZbMVfPIBon190tgQrm-QuT7NJygqgPKXsvk1TqS3qQh3FAOYvXNWCO41JN47DSKsMc_9SaYx9G1qSkHAESSe0sIoUvB8jLwx0_qp8cqDGAq_MFzbZAYEJs1gPLeq_ZJC_qvwZLezDcG2BSAzKZx8R1KKs2HI_mh5UlFChg8AN3kSW_Fxz1stooY4GRiPF1rzLU5OdYMHR7_NU3iZ__QfDTUUgFpaYNz0Y_wcC5PBsOXyHkq_17jlDYA_nOo0V5doH0Lqs8DWlT4-Y8RsCSbNbWJP9bIK9wvaKv5lrh3OQ\",\r\n \"e\": \"AQAB\"\r\n },\r\n \"attributes\": {\r\n \"enabled\": true,\r\n \"created\": 1615992854,\r\n \"updated\": 1615992854,\r\n \"recoveryLevel\": \"Recoverable+Purgeable\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/rotatediskencryptionkey?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvcm90YXRlZGlza2VuY3J5cHRpb25rZXk/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net:443\",\r\n \"keyName\": \"newkey-ps-cmktest2118\",\r\n \"keyVersion\": \"97c89d17cb7e43a8b074e68526451310\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e655e85-4a9a-45ff-aee1-c609625ef16b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "162" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/operationresults/5970e69c-2ef9-4819-963c-cab2497329c4-0-r?api-version=2018-06-01-preview" - ], - "Retry-After": [ - "60" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/5970e69c-2ef9-4819-963c-cab2497329c4-0-r?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "c70fd5fb-34e5-4d92-b11c-76ecaece20f1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "eac2a96c-19ff-466d-bb9f-e746c68f86a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145417Z:eac2a96c-19ff-466d-bb9f-e746c68f86a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:54:16 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/5970e69c-2ef9-4819-963c-cab2497329c4-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvNTk3MGU2OWMtMmVmOS00ODE5LTk2M2MtY2FiMjQ5NzMyOWM0LTAtcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e655e85-4a9a-45ff-aee1-c609625ef16b" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "fe6c83c0-f091-46ad-ad21-e5169ab21e78" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "63503f5a-6445-4086-a21b-ab1d713e01d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145518Z:63503f5a-6445-4086-a21b-ab1d713e01d3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:55:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/5970e69c-2ef9-4819-963c-cab2497329c4-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvNTk3MGU2OWMtMmVmOS00ODE5LTk2M2MtY2FiMjQ5NzMyOWM0LTAtcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e655e85-4a9a-45ff-aee1-c609625ef16b" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "a7997017-ec54-48a3-957d-8e4d37afb3c1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "17827a0c-e710-4f96-a1ab-e8c1e1df8066" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145619Z:17827a0c-e710-4f96-a1ab-e8c1e1df8066" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:56:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/azureasyncoperations/5970e69c-2ef9-4819-963c-cab2497329c4-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvYXp1cmVhc3luY29wZXJhdGlvbnMvNTk3MGU2OWMtMmVmOS00ODE5LTk2M2MtY2FiMjQ5NzMyOWM0LTAtcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e655e85-4a9a-45ff-aee1-c609625ef16b" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "fb3ba253-297f-4a45-b681-583b34b28751" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8d39cb1e-5e7c-4d12-9c18-168d3d3e7d50" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145720Z:8d39cb1e-5e7c-4d12-9c18-168d3d3e7d50" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:57:20 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249/operationresults/5970e69c-2ef9-4819-963c-cab2497329c4-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDkvb3BlcmF0aW9ucmVzdWx0cy81OTcwZTY5Yy0yZWY5LTQ4MTktOTYzYy1jYWIyNDk3MzI5YzQtMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2e655e85-4a9a-45ff-aee1-c609625ef16b" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "9ca65783-d581-4536-b293-9a497b04620b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "2793c68f-b70c-4c9c-8e58-c908c96939ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145720Z:2793c68f-b70c-4c9c-8e58-c908c96939ce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:57:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d46ffc79-f25b-4736-ac00-73cde3fc9b9c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "b5ab39df-7aac-42dd-8af1-e3e4416f96cc", - "47a59da6-e32e-4704-8f0a-8d33d8acbf73", - "cd3f3e83-bb33-4bfb-8379-1c0954d742ac", - "f1d6050d-66d4-4fb3-9d9f-f54050674122", - "1788b1c6-dbbc-4d85-870c-75578e31defb", - "dacdd0ea-2d67-4054-a8ac-c714f3267e63", - "", - "" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-request-id": [ - "2671b187-88f0-49e4-a1fa-438451a5eddb" - ], - "x-ms-correlation-request-id": [ - "2671b187-88f0-49e4-a1fa-438451a5eddb" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145741Z:2671b187-88f0-49e4-a1fa-438451a5eddb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:57:41 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "84629" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/fw1incentralindia\",\r\n \"name\": \"fw1incentralindia\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"eacb2a84-fd63-421e-87d7-e63a847ff410\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2101301510.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"341a716130d0468f8622beafe9e049f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-03-12T07:40:15.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalServerError\",\r\n \"message\": \"Fetching the customer's tenant id for subscription '964c10bb-8a6c-43bc-83d3-6b318c6c7305'. Invalid Status Code or www-authenticate header is empty or invalid format: 'StatusCode = Unauthorized\\r\\nHeaders\\r\\nPragma=no-cache\\r\\nx-ms-failure-cause=gateway\\r\\nx-ms-request-id=1f2f4366-d41b-4219-9078-ba41cf040f60\\r\\nx-ms-correlation-request-id=1f2f4366-d41b-4219-9078-ba41cf040f60\\r\\nx-ms-routing-request-id=WESTINDIA:20210312T074021Z:1f2f4366-d41b-4219-9078-ba41cf040f60\\r\\nStrict-Transport-Security=max-age=31536000; includeSubDomains\\r\\nX-Content-Type-Options=nosniff\\r\\nConnection=close\\r\\nCache-Control=no-cache\\r\\nDate=Fri, 12 Mar 2021 07:40:21 GMT\\r\\nWWW-Authenticate=Bearer authorization_uri=\\\"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\\\", error=\\\"invalid_token\\\", error_description=\\\"The access token is from the wrong issuer. It must match one of the tenants associated with this subscription. Please use correct authority to get the token.\\\"'\"\r\n },\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fw1incentralihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/fw1incentralihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fw1incentralindia-2021-03-12t07-38-50-742z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/fw2centralindia\",\r\n \"name\": \"fw2centralindia\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"33f47a7a-0bd7-42ad-a1f4-4e02d3180ba1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2101301510.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"8e77a553cb374d99ad36fc5493fe37b1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-03-12T07:46:24.677\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalServerError\",\r\n \"message\": \"Fetching the customer's tenant id for subscription '964c10bb-8a6c-43bc-83d3-6b318c6c7305'. Invalid Status Code or www-authenticate header is empty or invalid format: 'StatusCode = Unauthorized\\r\\nHeaders\\r\\nPragma=no-cache\\r\\nx-ms-failure-cause=gateway\\r\\nx-ms-request-id=e7b7ddaa-c387-46a2-8132-38235eb61ef7\\r\\nx-ms-correlation-request-id=e7b7ddaa-c387-46a2-8132-38235eb61ef7\\r\\nx-ms-routing-request-id=WESTINDIA:20210312T074625Z:e7b7ddaa-c387-46a2-8132-38235eb61ef7\\r\\nStrict-Transport-Security=max-age=31536000; includeSubDomains\\r\\nX-Content-Type-Options=nosniff\\r\\nConnection=close\\r\\nCache-Control=no-cache\\r\\nDate=Fri, 12 Mar 2021 07:46:25 GMT\\r\\nWWW-Authenticate=Bearer authorization_uri=\\\"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\\\", error=\\\"invalid_token\\\", error_description=\\\"The access token is from the wrong issuer. It must match one of the tenants associated with this subscription. Please use correct authority to get the token.\\\"'\"\r\n },\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fw2centralindhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/fw2centralindhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fw2centralindia-2021-03-12t07-44-35-508z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/fw3incentralindia\",\r\n \"name\": \"fw3incentralindia\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"1ed0cdaa-0b34-4a7f-b966-7d5e5e9413fd\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"e1e7c64a6a274a6facd3fabab4a148a0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-03-15T10:39:41.42\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalServerError\",\r\n \"message\": \"Fetching the customer's tenant id for subscription '964c10bb-8a6c-43bc-83d3-6b318c6c7305'. Invalid Status Code or www-authenticate header is empty or invalid format: 'StatusCode = Unauthorized\\r\\nHeaders\\r\\nPragma=no-cache\\r\\nx-ms-failure-cause=gateway\\r\\nx-ms-request-id=0b0327cb-9e31-4829-b321-c38c1ace2d54\\r\\nx-ms-correlation-request-id=0b0327cb-9e31-4829-b321-c38c1ace2d54\\r\\nx-ms-routing-request-id=WESTINDIA:20210315T103942Z:0b0327cb-9e31-4829-b321-c38c1ace2d54\\r\\nStrict-Transport-Security=max-age=31536000; includeSubDomains\\r\\nX-Content-Type-Options=nosniff\\r\\nConnection=close\\r\\nCache-Control=no-cache\\r\\nDate=Mon, 15 Mar 2021 10:39:42 GMT\\r\\nWWW-Authenticate=Bearer authorization_uri=\\\"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\\\", error=\\\"invalid_token\\\", error_description=\\\"The access token is from the wrong issuer. It must match one of the tenants associated with this subscription. Please use correct authority to get the token.\\\"'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fw1incentralihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/fw1incentralihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fw3incentralindia\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/fw4incentralindia\",\r\n \"name\": \"fw4incentralindia\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"84918d36-65e4-49e0-996f-31c95e0befb6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"8db7fcb9fa8e465fbf69921290a43985\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-03-15T10:41:22.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalServerError\",\r\n \"message\": \"Fetching the customer's tenant id for subscription '964c10bb-8a6c-43bc-83d3-6b318c6c7305'. Invalid Status Code or www-authenticate header is empty or invalid format: 'StatusCode = Unauthorized\\r\\nHeaders\\r\\nPragma=no-cache\\r\\nx-ms-failure-cause=gateway\\r\\nx-ms-request-id=dcd00664-de38-49e5-a74a-6e1bb48064d4\\r\\nx-ms-correlation-request-id=dcd00664-de38-49e5-a74a-6e1bb48064d4\\r\\nx-ms-routing-request-id=WESTINDIA:20210315T104123Z:dcd00664-de38-49e5-a74a-6e1bb48064d4\\r\\nStrict-Transport-Security=max-age=31536000; includeSubDomains\\r\\nX-Content-Type-Options=nosniff\\r\\nConnection=close\\r\\nCache-Control=no-cache\\r\\nDate=Mon, 15 Mar 2021 10:41:23 GMT\\r\\nWWW-Authenticate=Bearer authorization_uri=\\\"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\\\", error=\\\"invalid_token\\\", error_description=\\\"The access token is from the wrong issuer. It must match one of the tenants associated with this subscription. Please use correct authority to get the token.\\\"'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fw1incentralihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/fw1incentralihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fw4incentralindia\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/yalu-eav4-tesaaa\",\r\n \"name\": \"yalu-eav4-tesaaa\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"24040c57-b75f-4095-bf3c-e072ba39e224\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"9943db36ef874949b3360aa60845adb6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetincentralindia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-03-15T10:20:56.863\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalServerError\",\r\n \"message\": \"Fetching the customer's tenant id for subscription '964c10bb-8a6c-43bc-83d3-6b318c6c7305'. Invalid Status Code or www-authenticate header is empty or invalid format: 'StatusCode = Unauthorized\\r\\nHeaders\\r\\nPragma=no-cache\\r\\nx-ms-failure-cause=gateway\\r\\nx-ms-request-id=ad1ac935-8746-4517-bbaa-a6f2f660d1b5\\r\\nx-ms-correlation-request-id=ad1ac935-8746-4517-bbaa-a6f2f660d1b5\\r\\nx-ms-routing-request-id=WESTINDIA:20210315T102102Z:ad1ac935-8746-4517-bbaa-a6f2f660d1b5\\r\\nStrict-Transport-Security=max-age=31536000; includeSubDomains\\r\\nX-Content-Type-Options=nosniff\\r\\nConnection=close\\r\\nCache-Control=no-cache\\r\\nDate=Mon, 15 Mar 2021 10:21:01 GMT\\r\\nWWW-Authenticate=Bearer authorization_uri=\\\"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\\\", error=\\\"invalid_token\\\", error_description=\\\"The access token is from the wrong issuer. It must match one of the tenants associated with this subscription. Please use correct authority to get the token.\\\"'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalueav4tesaahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/yalueav4tesaahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-eav4-tesaaa-2021-03-15t10-19-17-630z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvargCanEast/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/fw3ineastasia\",\r\n \"name\": \"fw3ineastasia\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"d05f981f-81e6-4fe0-8ce4-be8431628b29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2101301510.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"8743d8498a15467da47c0ccd0c5f635f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetineastasia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetineastasia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetineastasia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetineastasia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetineastasia\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/vnetineastasia/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-03-15T09:39:15.067\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, APP_TIMELINE_SERVER, HISTORYSERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fw3ineastasia-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fw3ineastasia.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fw3ineastasia-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fw3ineastasiahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/fw3ineastasiahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fw3ineastasia-2021-03-15t09-36-24-835z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249\",\r\n \"name\": \"hdi-ps-cmktest50734249\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7541ce82-eb5c-484d-a6a9-0e771f95c736\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a986d1f8b2f74aaa8d96ae2815fac814\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-03-17T14:42:25.8\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-cmktest50734249-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-cmktest50734249.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://vault-ps-cmktest4347.vault.azure.net:443\",\r\n \"keyName\": \"newkey-ps-cmktest2118\",\r\n \"keyVersion\": \"97c89d17cb7e43a8b074e68526451310\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/microsoft.managedidentity/userassignedidentities/ami-ps-cmktest894\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9398.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.Storage/storageAccounts/storagepstest9398\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-cmktest50734249\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041/providers/microsoft.managedidentity/userassignedidentities/ami-ps-cmktest894\": {\r\n \"principalId\": \"cffab30d-033f-4ce2-8b6c-4a0946e04858\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4970/providers/Microsoft.HDInsight/clusters/hdi-ps-test6506\",\r\n \"name\": \"hdi-ps-test6506\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"1057a1a0-ec53-41e1-b720-4b02789e10fc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"090059708b4b456fb4500cb2c6657522\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-03-17T12:30:21.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: HISTORYSERVER, HIVE_SERVER, LIVY2_SERVER, OOZIE_SERVER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6506-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6506.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest1293.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4970/providers/Microsoft.Storage/storageAccounts/storagepstest1293\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test6506\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/testclusterwithgetskuapi\",\r\n \"name\": \"testclusterwithgetskuapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"c9922deb-89e8-4be5-bb84-439c6afcfd22\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"48bc1219a19448259fa648a2b762b01a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-03-17T11:27:17.36\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: OOZIE_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testclusterwithgetskuapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testclusterwithgetskuapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testclusterwithgetskuapi\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6041/providers/Microsoft.HDInsight/clusters/hdi-ps-cmktest50734249?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy1jbWt0ZXN0NTA3MzQyNDk/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d46ffc79-f25b-4736-ac00-73cde3fc9b9c" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/f97fb57f-8c17-4e7f-b951-63bebc02c379-0-r?api-version=2018-06-01-preview" - ], - "Retry-After": [ - "60" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/f97fb57f-8c17-4e7f-b951-63bebc02c379-0-r?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "6db1e765-e3c6-47b3-9b52-f0acfcaf3e8f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "24958152-8e0f-4a11-97e1-0f2e49b34af5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T145744Z:24958152-8e0f-4a11-97e1-0f2e49b34af5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 14:57:43 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/f97fb57f-8c17-4e7f-b951-63bebc02c379-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvZjk3ZmI1N2YtOGMxNy00ZTdmLWI5NTEtNjNiZWJjMDJjMzc5LTAtcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d46ffc79-f25b-4736-ac00-73cde3fc9b9c" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "AsyncOperationsWithRegionalSuffix" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "4e7e1c4f-ade9-453a-9496-e8850d7f22fd" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6246c44d-6748-4687-aa2b-a37a9dd5503d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150100Z:6246c44d-6748-4687-aa2b-a37a9dd5503d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:01:00 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/f97fb57f-8c17-4e7f-b951-63bebc02c379-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy9mOTdmYjU3Zi04YzE3LTRlN2YtYjk1MS02M2JlYmMwMmMzNzktMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d46ffc79-f25b-4736-ac00-73cde3fc9b9c" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/6.2.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "AsyncOperationsWithRegionalSuffix" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "0416def9-e1cb-4c1f-bd9c-f7959ddaf1b2" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "03fbb6ae-04ed-4dc2-805c-98504001aeac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150101Z:03fbb6ae-04ed-4dc2-805c-98504001aeac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:01:00 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test6041?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q2MDQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2babc1f7-25fc-4dcc-8b5e-8ae51e287219" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "670ea2c6-e97e-48f8-9445-138891f26b26" - ], - "x-ms-correlation-request-id": [ - "670ea2c6-e97e-48f8-9445-138891f26b26" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150105Z:670ea2c6-e97e-48f8-9445-138891f26b26" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:01:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl3TkRFdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "2a6f8e0e-71d1-49bd-81b7-aec7b8bbf055" - ], - "x-ms-correlation-request-id": [ - "2a6f8e0e-71d1-49bd-81b7-aec7b8bbf055" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150120Z:2a6f8e0e-71d1-49bd-81b7-aec7b8bbf055" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:01:20 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl3TkRFdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "a1dd605b-8c18-4df9-939d-7123bcb0d1ba" - ], - "x-ms-correlation-request-id": [ - "a1dd605b-8c18-4df9-939d-7123bcb0d1ba" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150136Z:a1dd605b-8c18-4df9-939d-7123bcb0d1ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:01:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl3TkRFdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "95e8eb7e-d396-4ef0-976b-2685b116f9c1" - ], - "x-ms-correlation-request-id": [ - "95e8eb7e-d396-4ef0-976b-2685b116f9c1" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150151Z:95e8eb7e-d396-4ef0-976b-2685b116f9c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:01:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl3TkRFdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "e0acfabd-11d1-4149-973e-d41e893b7129" - ], - "x-ms-correlation-request-id": [ - "e0acfabd-11d1-4149-973e-d41e893b7129" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150206Z:e0acfabd-11d1-4149-973e-d41e893b7129" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:02:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl3TkRFdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "35804a64-4210-4ee6-8301-a07934f2cb0f" - ], - "x-ms-correlation-request-id": [ - "35804a64-4210-4ee6-8301-a07934f2cb0f" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150222Z:35804a64-4210-4ee6-8301-a07934f2cb0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:02:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl3TkRFdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "3284651b-0963-483a-8a86-e87ad08bcc19" - ], - "x-ms-correlation-request-id": [ - "3284651b-0963-483a-8a86-e87ad08bcc19" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150237Z:3284651b-0963-483a-8a86-e87ad08bcc19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:02:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl3TkRFdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "44459cb9-65f4-4a4f-b2ca-6138bc7dbdd8" - ], - "x-ms-correlation-request-id": [ - "44459cb9-65f4-4a4f-b2ca-6138bc7dbdd8" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150252Z:44459cb9-65f4-4a4f-b2ca-6138bc7dbdd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:02:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDYwNDEtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFl3TkRFdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29812.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "74393886-a936-4e84-80d4-58bbeacf765d" - ], - "x-ms-correlation-request-id": [ - "74393886-a936-4e84-80d4-58bbeacf765d" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20210317T150253Z:74393886-a936-4e84-80d4-58bbeacf765d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 17 Mar 2021 15:02:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "Test-CmkClusterRelatedCommands": [ - "hdi-ps-cmktest5073", - "vault-ps-cmktest4347", - "key-ps-cmktest4410", - "ami-ps-cmktest894", - "newkey-ps-cmktest2118", - "hdi-ps-cmktest50734249", - "group-ps-test6041", - "storagepstest9398" - ] - }, - "Variables": { - "SubscriptionId": "964c10bb-8a6c-43bc-83d3-6b318c6c7305", - "AADClientId": "ec14b8ea-edc0-4a0e-9210-a3718e1eac68", - "ServicePrincipal": "7b00e12a-4e2a-48de-be4e-fad5871fbc61" - } -} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithAvailabilityZones.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithAvailabilityZones.json index 415e55dc34ff..2c638a5104f3 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithAvailabilityZones.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithAvailabilityZones.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8620?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3085?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzMDg1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7d7fb737-4267-4c55-b01e-7fe5cf62e035" + "73c1ac26-2d65-4ba4-80f9-0ac5209dc7b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "29" ] }, + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "f05a724b-77c9-4efc-b94b-bcd445bcf2d8" + "9cd2583f-93c6-4268-86c8-fde5bbe11f02" ], "x-ms-correlation-request-id": [ - "f05a724b-77c9-4efc-b94b-bcd445bcf2d8" + "9cd2583f-93c6-4268-86c8-fde5bbe11f02" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050711Z:f05a724b-77c9-4efc-b94b-bcd445bcf2d8" + "KOREACENTRAL:20230731T064714Z:9cd2583f-93c6-4268-86c8-fde5bbe11f02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:07:10 GMT" + "Mon, 31 Jul 2023 06:47:14 GMT" ], "Content-Length": [ - "195" + "187" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620\",\r\n \"name\": \"group-ps-test8620\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085\",\r\n \"name\": \"group-ps-test3085\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.Storage/storageAccounts/storagepstest7573?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDc1NzM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Storage/storageAccounts/storagepstest112?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMDg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDExMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8ba43a8b-e4ea-49a8-b62c-5e41e5f6cf58" + "cda8a278-c6e2-4608-a1f7-7ace92ab5556" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "110" + "101" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/cf083089-61b2-4676-95aa-f9f271cf0a78?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/74670651-b5b1-4861-adbc-019cdc46f3af?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "cf083089-61b2-4676-95aa-f9f271cf0a78" + "74670651-b5b1-4861-adbc-019cdc46f3af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,19 +114,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "8d7f09ec-19ce-4988-9190-22122ca071f4" + "81637be9-09e6-4504-a759-d660b4b7c651" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050719Z:8d7f09ec-19ce-4988-9190-22122ca071f4" + "KOREACENTRAL:20230731T064719Z:81637be9-09e6-4504-a759-d660b4b7c651" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:07:18 GMT" + "Mon, 31 Jul 2023 06:47:18 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,18 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/cf083089-61b2-4676-95aa-f9f271cf0a78?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zL2NmMDgzMDg5LTYxYjItNDY3Ni05NWFhLWY5ZjI3MWNmMGE3OD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/74670651-b5b1-4861-adbc-019cdc46f3af?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy83NDY3MDY1MS1iNWIxLTQ4NjEtYWRiYy0wMTljZGM0NmYzYWY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -162,7 +162,7 @@ "no-cache" ], "x-ms-request-id": [ - "6d4ec047-bf6d-43c0-969a-cc34b9f59bbf" + "3c9c881b-d65b-4f1b-b7c2-60c741a3f73a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,19 +174,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "0cf41839-2430-4241-82bb-e14b5be3a18b" + "62f9ca93-fd2d-431e-bcf4-f4726e6ff212" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050736Z:0cf41839-2430-4241-82bb-e14b5be3a18b" + "KOREACENTRAL:20230731T064736Z:62f9ca93-fd2d-431e-bcf4-f4726e6ff212" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:07:35 GMT" + "Mon, 31 Jul 2023 06:47:35 GMT" ], "Content-Length": [ - "1408" + "1375" ], "Content-Type": [ "application/json" @@ -195,28 +195,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.Storage/storageAccounts/storagepstest7573\",\r\n \"name\": \"storagepstest7573\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-10-12T05:07:17.1975736Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-10-12T05:07:17.1975736Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-10-12T05:07:17.1038143Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7573.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7573.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7573.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest7573.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7573-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7573-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7573-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Storage/storageAccounts/storagepstest112\",\r\n \"name\": \"storagepstest112\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-31T06:47:17.1969443Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-31T06:47:17.1969443Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-31T06:47:16.8688017Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest112.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest112.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest112.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest112.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest112-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest112-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest112-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.Storage/storageAccounts/storagepstest7573/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDc1NzMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Storage/storageAccounts/storagepstest112/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzMDg1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDExMi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d777c8b-9673-426d-9be8-205b6d6a0836" + "5b66e5fb-9b54-4ce8-abc9-609f7f2a73a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "9b0100da-134f-4cc7-a56f-cf63a71ce062" + "aa26baf3-2ae8-435a-a148-31da5fcac19a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +237,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "8ba9a73b-3cdd-431f-a96e-c1a5e947ff85" + "66a61d6c-d2c8-497e-aeb5-3205a8e7c8f3" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050737Z:8ba9a73b-3cdd-431f-a96e-c1a5e947ff85" + "KOREACENTRAL:20230731T064738Z:66a61d6c-d2c8-497e-aeb5-3205a8e7c8f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:07:36 GMT" + "Mon, 31 Jul 2023 06:47:37 GMT" ], "Content-Length": [ "288" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"zpUseCH9yp6rqGBVzob7F7wETrTuKZpOLr5TRwb9WXrUBbp4bXNBp1umPVPLY4gPYeFLBnOOG/0u1p15Ao9VBw==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"Y1iTuhPvEJvLR/tWHXSnfaCqU2ESfps/b6+tXLux5WaTsEAu3vQz525VPx7ulLqFv+JPmVXq27klaaMGxXZsYQ==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9iaWxsaW5nU3BlY3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3085?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzMDg1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" + "dea86912-9f4c-4b40-acfe-3da4d243fe9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -287,23 +287,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "b53e9b3a-8c1e-48a5-b67f-899c70623490" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "e539daea-d995-4fb9-a9ec-939ed7b465a5" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "5269778b-920f-419c-b1ef-8a05e593ce4a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-correlation-request-id": [ + "5269778b-920f-419c-b1ef-8a05e593ce4a" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050748Z:e539daea-d995-4fb9-a9ec-939ed7b465a5" + "KOREACENTRAL:20230731T071253Z:5269778b-920f-419c-b1ef-8a05e593ce4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,46 +312,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:07:48 GMT" - ], - "Content-Length": [ - "117423" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:12:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A10\",\r\n \"A11\",\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"A8\",\r\n \"A9\",\r\n \"G1\",\r\n \"G2\",\r\n \"G3\",\r\n \"G4\",\r\n \"G5\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E16S_V3\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E32S_V3\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E4S_V3\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E8S_V3\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_G1\",\r\n \"STANDARD_G2\",\r\n \"STANDARD_G3\",\r\n \"STANDARD_G4\",\r\n \"STANDARD_G5\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\",\r\n \"STANDARD_NC24\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E16s_v3\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E32s_v3\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E4s_v3\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E8s_v3\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\",\r\n \"3.6\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A10\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A10 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A11 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A9 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16S_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E16s_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 274878,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32S_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E32s_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 549756,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E4S_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E4s_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 68720,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E8S_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E8s_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 137439,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G1(2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"STANDARD_G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"STANDARD_G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"STANDARD_G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"STANDARD_G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_NC24\",\r\n \"cores\": 24,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_NC24 (24 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1474560,\r\n \"webWorkerResourceDiskSizeInMb\": 1474560\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"South Central US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {},\r\n \"oozie-site\": {\r\n \"oozie.service.JPAService.jdbc.url\": \"jdbc:sqlserver://yoursqlserver.database.windows.net;database=ooziedb;encrypt=true;trustServerCertificate=true;create=false;loginTimeout=300;sendStringParametersAsUnicode=true;prepareSQL=0\",\r\n \"oozie.service.JPAService.jdbc.username\": \"yourusername\",\r\n \"oozie.service.JPAService.jdbc.password\": \"******\",\r\n \"oozie.service.JPAService.jdbc.driver\": \"com.microsoft.sqlserver.jdbc.SQLServerDriver\",\r\n \"oozie.db.schema.name\": \"oozie\"\r\n },\r\n \"oozie-env\": {\r\n \"oozie_database\": \"Existing MSSQL Server database with SQL authentication\",\r\n \"oozie_database_name\": \"ooziedb\",\r\n \"oozie_database_type\": \"mssql\",\r\n \"oozie_existing_mssql_server_database\": \"ooziedb\",\r\n \"oozie_existing_mssql_server_host\": \"yoursqlserver.database.windows.net\",\r\n \"oozie_hostname\": \"yoursqlserver.database.windows.net\"\r\n },\r\n \"hive-site\": {\r\n \"javax.jdo.option.ConnectionURL\": \"jdbc:sqlserver://yoursqlserver.database.windows.net;database=hivedb;encrypt=true;trustServerCertificate=true;create=false;loginTimeout=300;sendStringParametersAsUnicode=true;prepareSQL=0\",\r\n \"javax.jdo.option.ConnectionUserName\": \"yourusername\",\r\n \"javax.jdo.option.ConnectionPassword\": \"******\",\r\n \"javax.jdo.option.ConnectionDriverName\": \"com.microsoft.sqlserver.jdbc.SQLServerDriver\"\r\n },\r\n \"hive-env\": {\r\n \"hive_database\": \"Existing MSSQL Server database with SQL authentication\",\r\n \"hive_database_name\": \"hivedb\",\r\n \"hive_database_type\": \"mssql\",\r\n \"hive_existing_mssql_server_database\": \"hivedb\",\r\n \"hive_existing_mssql_server_host\": \"yoursqlserver.database.windows.net\",\r\n \"hive_hostname\": \"yoursqlserver.database.windows.net\"\r\n },\r\n \"ambari-conf\": {\r\n \"database-server\": \"yoursqlserver.database.windows.net\",\r\n \"database-name\": \"ambaridb\",\r\n \"database-user-name\": \"yourusername\",\r\n \"database-user-password\": \"******\"\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7573.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test2685\",\r\n \"key\": \"zpUseCH9yp6rqGBVzob7F7wETrTuKZpOLr5TRwb9WXrUBbp4bXNBp1umPVPLY4gPYeFLBnOOG/0u1p15Ao9VBw==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.Storage/storageAccounts/storagepstest7573\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "5601" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -359,32 +344,23 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "\"86f20d07-a7e0-4311-ad6a-76bd2ea6add5\"" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685?api-version=2021-06-01" + "Retry-After": [ + "15" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "5dc4b3cd-4fd8-49eb-bd8f-cca0bf7f82fd" - ], - "x-ms-hdi-served-by": [ - "southcentralus" + "51b67d19-155c-41f9-93e0-d29626a3ed9b" ], "x-ms-correlation-request-id": [ - "00022556-bb97-4cc0-ae05-63c9b2978ee3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "51b67d19-155c-41f9-93e0-d29626a3ed9b" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050759Z:00022556-bb97-4cc0-ae05-63c9b2978ee3" + "KOREACENTRAL:20230731T071309Z:51b67d19-155c-41f9-93e0-d29626a3ed9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -393,37 +369,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:07:59 GMT" - ], - "Content-Length": [ - "3035" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:13:08 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685\",\r\n \"name\": \"hdi-ps-test2685\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"86f20d07-a7e0-4311-ad6a-76bd2ea6add5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7476dbdb09e149b0aa589a7b92be0265\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-12T05:07:57.943\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7573.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.Storage/storageAccounts/storagepstest7573\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2685\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -431,23 +401,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "c30cea44-c18a-41d7-852b-3d4e8bad68b1" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "46b7caea-81be-4932-9252-22350ce57ae0" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-request-id": [ + "45acf59e-7eda-4f09-8e17-9a6eed66b00e" + ], + "x-ms-correlation-request-id": [ + "45acf59e-7eda-4f09-8e17-9a6eed66b00e" + ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050830Z:46b7caea-81be-4932-9252-22350ce57ae0" + "KOREACENTRAL:20230731T071325Z:45acf59e-7eda-4f09-8e17-9a6eed66b00e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,37 +426,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:08:29 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:13:24 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -494,23 +458,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "10e34222-4a7b-412e-a506-9a150ffc1bd3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5d2c4b35-18d1-4e8c-9623-b5bf6475b1da" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-request-id": [ + "4c5441a6-4eb2-4645-9222-4b9edfa4749b" + ], + "x-ms-correlation-request-id": [ + "4c5441a6-4eb2-4645-9222-4b9edfa4749b" + ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050900Z:5d2c4b35-18d1-4e8c-9623-b5bf6475b1da" + "KOREACENTRAL:20230731T071340Z:4c5441a6-4eb2-4645-9222-4b9edfa4749b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,37 +483,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:09:00 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:13:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -557,23 +515,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "40738aaa-40c3-45af-ac0f-77ee0553f93e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b299eca6-8f5c-4744-92d2-794ceacc60a0" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-request-id": [ + "bea38d1f-92c1-4479-9e5d-0d00798cec24" + ], + "x-ms-correlation-request-id": [ + "bea38d1f-92c1-4479-9e5d-0d00798cec24" + ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T050931Z:b299eca6-8f5c-4744-92d2-794ceacc60a0" + "KOREACENTRAL:20230731T071356Z:bea38d1f-92c1-4479-9e5d-0d00798cec24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,37 +540,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:09:30 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:13:55 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -620,23 +572,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "33679f3d-092f-46e2-a441-cb9c544aa72d" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "96084535-d3f2-4e12-b77b-f1b45661801f" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "6e16146c-dec9-425f-b71b-9916bb229549" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-correlation-request-id": [ + "6e16146c-dec9-425f-b71b-9916bb229549" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051002Z:96084535-d3f2-4e12-b77b-f1b45661801f" + "KOREACENTRAL:20230731T071411Z:6e16146c-dec9-425f-b71b-9916bb229549" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,37 +597,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:10:01 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:14:11 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -683,23 +629,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "590c0a75-4955-44af-be08-d8de09a805a8" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "057289ed-3605-4137-8344-d305ff1dfb76" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "5cf1a197-6030-4b43-9321-8de45ac03a9d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-correlation-request-id": [ + "5cf1a197-6030-4b43-9321-8de45ac03a9d" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051033Z:057289ed-3605-4137-8344-d305ff1dfb76" + "KOREACENTRAL:20230731T071427Z:5cf1a197-6030-4b43-9321-8de45ac03a9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,37 +654,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:10:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:14:26 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -746,23 +686,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ccf7e0dc-46b4-40ff-89c1-8ab0c9ad692f" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "2e1bdd08-2ad7-4d0e-b3d4-6a4f36ae860a" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "7176c6d2-8502-4db7-a6b5-49d233b63bcc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-correlation-request-id": [ + "7176c6d2-8502-4db7-a6b5-49d233b63bcc" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051103Z:2e1bdd08-2ad7-4d0e-b3d4-6a4f36ae860a" + "KOREACENTRAL:20230731T071442Z:7176c6d2-8502-4db7-a6b5-49d233b63bcc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -771,37 +711,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:11:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:14:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -809,23 +743,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "6f74ae6b-a88f-4281-bfc1-2f789e649474" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "30be8b74-8066-4c80-aa2b-085105f620e7" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "3d6de95a-ae2b-431c-be5d-2a1552e25c02" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-correlation-request-id": [ + "3d6de95a-ae2b-431c-be5d-2a1552e25c02" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051134Z:30be8b74-8066-4c80-aa2b-085105f620e7" + "KOREACENTRAL:20230731T071458Z:3d6de95a-ae2b-431c-be5d-2a1552e25c02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -834,37 +768,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:11:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:14:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -872,23 +800,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "c4964bdd-eaab-4a33-b964-9d0613412716" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "c7e8ae8e-3de4-4730-a3e9-e51a159f34f3" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "5f6ec395-dadc-4b63-bd68-1683f08aa1d6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-correlation-request-id": [ + "5f6ec395-dadc-4b63-bd68-1683f08aa1d6" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051204Z:c7e8ae8e-3de4-4730-a3e9-e51a159f34f3" + "KOREACENTRAL:20230731T071513Z:5f6ec395-dadc-4b63-bd68-1683f08aa1d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -897,37 +825,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:12:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:15:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -935,23 +857,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "aa12d263-f2b0-4199-b292-53d37a68d6ba" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "4e025088-1370-48cb-96e6-2ff315edd28c" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "00025fb5-4e8e-4811-a10d-6076bb025657" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "x-ms-correlation-request-id": [ + "00025fb5-4e8e-4811-a10d-6076bb025657" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051235Z:4e025088-1370-48cb-96e6-2ff315edd28c" + "KOREACENTRAL:20230731T071529Z:00025fb5-4e8e-4811-a10d-6076bb025657" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -960,37 +882,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:12:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:15:28 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -998,23 +914,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "40287116-86f0-4a54-9417-c6cae6e3c6ea" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "cf3303d5-a4e1-4f06-859b-d389d833a966" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "66fb5fb1-9990-43a7-95d1-243873b0a449" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "x-ms-correlation-request-id": [ + "66fb5fb1-9990-43a7-95d1-243873b0a449" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051305Z:cf3303d5-a4e1-4f06-859b-d389d833a966" + "KOREACENTRAL:20230731T071544Z:66fb5fb1-9990-43a7-95d1-243873b0a449" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1023,37 +939,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:13:05 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:15:44 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1061,23 +971,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "4a816d61-0407-4a4a-beda-17adc6e5a623" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "5c2ce676-7f8e-482d-a880-a32a668c7afd" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "122e72d7-172d-4ee4-9d57-6d155c9cb0e0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "x-ms-correlation-request-id": [ + "122e72d7-172d-4ee4-9d57-6d155c9cb0e0" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051336Z:5c2ce676-7f8e-482d-a880-a32a668c7afd" + "KOREACENTRAL:20230731T071600Z:122e72d7-172d-4ee4-9d57-6d155c9cb0e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,37 +996,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:13:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:16:00 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1124,23 +1028,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ae133566-c409-42f5-af99-e520568e3520" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "f23474a8-3b0a-41c3-b458-d5a43e452ed8" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "797a6dfc-eebb-4538-a73d-0d712fe89dce" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "x-ms-correlation-request-id": [ + "797a6dfc-eebb-4538-a73d-0d712fe89dce" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051406Z:f23474a8-3b0a-41c3-b458-d5a43e452ed8" + "KOREACENTRAL:20230731T071615Z:797a6dfc-eebb-4538-a73d-0d712fe89dce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1149,37 +1053,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:14:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:16:15 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1187,23 +1085,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "1a171117-37a1-43ec-86b0-0753fc812f87" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "00abdf71-c1ed-4348-a2d8-34d8b120c317" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "b83436db-2d1b-4051-be4a-366bd2dcc8c1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "x-ms-correlation-request-id": [ + "b83436db-2d1b-4051-be4a-366bd2dcc8c1" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051437Z:00abdf71-c1ed-4348-a2d8-34d8b120c317" + "KOREACENTRAL:20230731T071631Z:b83436db-2d1b-4051-be4a-366bd2dcc8c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1212,37 +1110,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:14:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:16:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1250,23 +1142,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "853fd16d-5229-425b-b47f-9fa7480c468e" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "91527f9e-14cd-4e03-9901-12b2b8200d01" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "3cd9b3e9-e530-45b9-8c14-ac58ce47ddae" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "x-ms-correlation-request-id": [ + "3cd9b3e9-e530-45b9-8c14-ac58ce47ddae" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051507Z:91527f9e-14cd-4e03-9901-12b2b8200d01" + "KOREACENTRAL:20230731T071646Z:3cd9b3e9-e530-45b9-8c14-ac58ce47ddae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1275,37 +1167,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:15:07 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:16:45 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1313,23 +1199,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "78a8fd1b-17c9-4068-91a8-4d73ede78081" - ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-correlation-request-id": [ - "f4efb2a0-142a-4085-b3c2-c3bc2d91fba8" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11984" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "b2244476-576f-4ed0-be83-3217eba803a9" + ], + "x-ms-correlation-request-id": [ + "b2244476-576f-4ed0-be83-3217eba803a9" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051538Z:f4efb2a0-142a-4085-b3c2-c3bc2d91fba8" + "KOREACENTRAL:20230731T071703Z:b2244476-576f-4ed0-be83-3217eba803a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,37 +1224,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:15:37 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:17:03 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1376,23 +1256,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "7c47374b-c63b-45fd-bc08-3cb2fd9c737d" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "1aacfccd-5c78-4d07-9006-21e5073a2448" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "0ed88512-7652-4a05-a162-be85edf1dda7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "x-ms-correlation-request-id": [ + "0ed88512-7652-4a05-a162-be85edf1dda7" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051609Z:1aacfccd-5c78-4d07-9006-21e5073a2448" + "KOREACENTRAL:20230731T071718Z:0ed88512-7652-4a05-a162-be85edf1dda7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1401,37 +1281,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:16:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:17:18 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1439,23 +1313,1223 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "2d4919e1-035b-419c-ad69-f0dfb03cb627" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "307a0288-ebf7-44df-ae0b-06350bd2a64b" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "cbb9c743-1248-4ab7-aa44-9c9ab51d079f" + ], + "x-ms-correlation-request-id": [ + "cbb9c743-1248-4ab7-aa44-9c9ab51d079f" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071734Z:cbb9c743-1248-4ab7-aa44-9c9ab51d079f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:17:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "b35c3f79-9913-4afa-8a24-6986e338dd7e" + ], + "x-ms-correlation-request-id": [ + "b35c3f79-9913-4afa-8a24-6986e338dd7e" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071750Z:b35c3f79-9913-4afa-8a24-6986e338dd7e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:17:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "fd1df0c7-fb66-4847-9edd-476622d5d8fe" + ], + "x-ms-correlation-request-id": [ + "fd1df0c7-fb66-4847-9edd-476622d5d8fe" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071805Z:fd1df0c7-fb66-4847-9edd-476622d5d8fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:18:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "b1a5391a-a234-4464-b430-d0547f20e7d1" + ], + "x-ms-correlation-request-id": [ + "b1a5391a-a234-4464-b430-d0547f20e7d1" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071821Z:b1a5391a-a234-4464-b430-d0547f20e7d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:18:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "b2bf32bd-1f3f-4df2-875b-00678e088a3e" + ], + "x-ms-correlation-request-id": [ + "b2bf32bd-1f3f-4df2-875b-00678e088a3e" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071836Z:b2bf32bd-1f3f-4df2-875b-00678e088a3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:18:35 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "be026156-356c-40db-a45c-c3a492e7256e" + ], + "x-ms-correlation-request-id": [ + "be026156-356c-40db-a45c-c3a492e7256e" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071852Z:be026156-356c-40db-a45c-c3a492e7256e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:18:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "34ff9039-9447-46b2-ba9a-34a89fd3edcc" + ], + "x-ms-correlation-request-id": [ + "34ff9039-9447-46b2-ba9a-34a89fd3edcc" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071907Z:34ff9039-9447-46b2-ba9a-34a89fd3edcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:19:06 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "f0029eab-f9a1-42f7-b293-db4d48703c03" + ], + "x-ms-correlation-request-id": [ + "f0029eab-f9a1-42f7-b293-db4d48703c03" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071923Z:f0029eab-f9a1-42f7-b293-db4d48703c03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:19:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "c0fe96ac-9194-4f14-a2af-22a88a39e37b" + ], + "x-ms-correlation-request-id": [ + "c0fe96ac-9194-4f14-a2af-22a88a39e37b" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071938Z:c0fe96ac-9194-4f14-a2af-22a88a39e37b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:19:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "cdacf6fa-de3b-4cc1-83ae-0186c9cc1b30" + ], + "x-ms-correlation-request-id": [ + "cdacf6fa-de3b-4cc1-83ae-0186c9cc1b30" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T071954Z:cdacf6fa-de3b-4cc1-83ae-0186c9cc1b30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:19:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "bd5ee217-5d86-4aa1-ba33-f187a0b512a6" + ], + "x-ms-correlation-request-id": [ + "bd5ee217-5d86-4aa1-ba33-f187a0b512a6" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072009Z:bd5ee217-5d86-4aa1-ba33-f187a0b512a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:20:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "acbf0046-81d8-42c1-9918-ef5be3a00832" + ], + "x-ms-correlation-request-id": [ + "acbf0046-81d8-42c1-9918-ef5be3a00832" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072025Z:acbf0046-81d8-42c1-9918-ef5be3a00832" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:20:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "01bb2196-8236-4791-bc40-f12ce6e40e48" + ], + "x-ms-correlation-request-id": [ + "01bb2196-8236-4791-bc40-f12ce6e40e48" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072040Z:01bb2196-8236-4791-bc40-f12ce6e40e48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:20:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "b6724974-ffde-4055-a66e-3813f3a45f81" + ], + "x-ms-correlation-request-id": [ + "b6724974-ffde-4055-a66e-3813f3a45f81" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072056Z:b6724974-ffde-4055-a66e-3813f3a45f81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:20:55 GMT" + ], + "Connection": [ + "close" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e2080709-b60f-43db-a73f-583242d38f7b" + ], + "x-ms-correlation-request-id": [ + "e2080709-b60f-43db-a73f-583242d38f7b" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072112Z:e2080709-b60f-43db-a73f-583242d38f7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:21:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "db23f296-5fbe-4249-85c0-3689159f821d" + ], + "x-ms-correlation-request-id": [ + "db23f296-5fbe-4249-85c0-3689159f821d" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072127Z:db23f296-5fbe-4249-85c0-3689159f821d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:21:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "d94d67e3-4d91-491d-9855-8acc1591408f" + ], + "x-ms-correlation-request-id": [ + "d94d67e3-4d91-491d-9855-8acc1591408f" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072143Z:d94d67e3-4d91-491d-9855-8acc1591408f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:21:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "d72dbd9d-82e6-4d91-a431-68587c889d7d" + ], + "x-ms-correlation-request-id": [ + "d72dbd9d-82e6-4d91-a431-68587c889d7d" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072158Z:d72dbd9d-82e6-4d91-a431-68587c889d7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:21:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "dccc2997-c9a6-4f34-9c73-0d2887a3d7ee" + ], + "x-ms-correlation-request-id": [ + "dccc2997-c9a6-4f34-9c73-0d2887a3d7ee" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072214Z:dccc2997-c9a6-4f34-9c73-0d2887a3d7ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:22:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "a88f87bc-c267-4898-83d2-fdb926165278" + ], + "x-ms-correlation-request-id": [ + "a88f87bc-c267-4898-83d2-fdb926165278" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072229Z:a88f87bc-c267-4898-83d2-fdb926165278" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:22:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "483bf027-aa99-4593-9286-49f5a8d202c4" + ], + "x-ms-correlation-request-id": [ + "483bf027-aa99-4593-9286-49f5a8d202c4" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072245Z:483bf027-aa99-4593-9286-49f5a8d202c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:22:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11992" + ], + "x-ms-request-id": [ + "c8720400-d32e-4133-b82e-bad69644d7f7" + ], + "x-ms-correlation-request-id": [ + "c8720400-d32e-4133-b82e-bad69644d7f7" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051639Z:307a0288-ebf7-44df-ae0b-06350bd2a64b" + "KOREACENTRAL:20230731T072300Z:c8720400-d32e-4133-b82e-bad69644d7f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1464,37 +2538,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:16:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:23:00 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1502,23 +2570,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "60467368-9de1-48a9-a2cb-7857a7023a36" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "b786c014-94fa-4fcd-8194-fbbf38ef988f" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "b49f3fdf-3d9a-47a9-8645-e97c6d087d16" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "x-ms-correlation-request-id": [ + "b49f3fdf-3d9a-47a9-8645-e97c6d087d16" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051710Z:b786c014-94fa-4fcd-8194-fbbf38ef988f" + "KOREACENTRAL:20230731T072316Z:b49f3fdf-3d9a-47a9-8645-e97c6d087d16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1527,37 +2595,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:17:10 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:23:15 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1565,23 +2627,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "f55859cc-af2c-45eb-a512-d3677d1a5428" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "6118d820-47f6-45a6-aab8-f3d366962a69" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "b3de93cb-30da-4d6e-be09-a324060de933" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "x-ms-correlation-request-id": [ + "b3de93cb-30da-4d6e-be09-a324060de933" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051740Z:6118d820-47f6-45a6-aab8-f3d366962a69" + "KOREACENTRAL:20230731T072331Z:b3de93cb-30da-4d6e-be09-a324060de933" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1590,37 +2652,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:17:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:23:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1628,23 +2684,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "86adbc9a-61a9-4ee5-9249-ddf3820b0fc2" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "1446a9ea-f574-451d-93f9-9fa6e985bbba" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "6c90521c-f44e-48ad-96d8-7a3b197697e1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "x-ms-correlation-request-id": [ + "6c90521c-f44e-48ad-96d8-7a3b197697e1" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051811Z:1446a9ea-f574-451d-93f9-9fa6e985bbba" + "KOREACENTRAL:20230731T072347Z:6c90521c-f44e-48ad-96d8-7a3b197697e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,37 +2709,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:18:10 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:23:46 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1691,23 +2741,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "bb3d27a0-2968-4d97-a18a-fd6cf56b23a7" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "0661690f-c6e5-4612-bd08-f1cc8e98fbe2" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "8a03c433-cbad-404a-9695-ed8d590d11bb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "x-ms-correlation-request-id": [ + "8a03c433-cbad-404a-9695-ed8d590d11bb" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051841Z:0661690f-c6e5-4612-bd08-f1cc8e98fbe2" + "KOREACENTRAL:20230731T072402Z:8a03c433-cbad-404a-9695-ed8d590d11bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1716,37 +2766,88 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:18:40 GMT" + "Mon, 31 Jul 2023 07:24:01 GMT" + ], + "Expires": [ + "-1" ], "Content-Length": [ - "23" + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "9bf8c1ac-eaf6-4fd9-879e-f7fe4289c563" + ], + "x-ms-correlation-request-id": [ + "9bf8c1ac-eaf6-4fd9-879e-f7fe4289c563" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072418Z:9bf8c1ac-eaf6-4fd9-879e-f7fe4289c563" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:24:17 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1754,23 +2855,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "28e8c160-d441-4f2c-850a-e16ee18a953b" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "45f8729f-6eb0-4810-a865-a9be9125f6fe" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "d35847cc-f6e2-46be-b16b-7166723d2717" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "x-ms-correlation-request-id": [ + "d35847cc-f6e2-46be-b16b-7166723d2717" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051912Z:45f8729f-6eb0-4810-a865-a9be9125f6fe" + "KOREACENTRAL:20230731T072433Z:d35847cc-f6e2-46be-b16b-7166723d2717" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,37 +2880,88 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:19:11 GMT" + "Mon, 31 Jul 2023 07:24:33 GMT" + ], + "Expires": [ + "-1" ], "Content-Length": [ - "23" + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "6e89f1c5-12ff-4581-8374-c179628ab7b1" + ], + "x-ms-correlation-request-id": [ + "6e89f1c5-12ff-4581-8374-c179628ab7b1" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230731T072449Z:6e89f1c5-12ff-4581-8374-c179628ab7b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 31 Jul 2023 07:24:48 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1817,23 +2969,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "4395ad59-b48e-42c8-ac83-453457ce24a1" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "fec8e940-6c4f-443f-a1ee-fd5a8c3178a6" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "1e1f3ad2-f97b-4cd3-8e9f-bb6a1a576446" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "x-ms-correlation-request-id": [ + "1e1f3ad2-f97b-4cd3-8e9f-bb6a1a576446" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T051942Z:fec8e940-6c4f-443f-a1ee-fd5a8c3178a6" + "KOREACENTRAL:20230731T072504Z:1e1f3ad2-f97b-4cd3-8e9f-bb6a1a576446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1842,37 +2994,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:19:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:25:03 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1880,23 +3026,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "8c2f49d5-5df1-4e8e-a921-ea01be24611c" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "fce66fab-0fb4-40d6-9a84-d2ffe8f49b1d" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "3bb0d96f-67d9-4f43-a8ff-642fffccfcdd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "x-ms-correlation-request-id": [ + "3bb0d96f-67d9-4f43-a8ff-642fffccfcdd" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052013Z:fce66fab-0fb4-40d6-9a84-d2ffe8f49b1d" + "KOREACENTRAL:20230731T072520Z:3bb0d96f-67d9-4f43-a8ff-642fffccfcdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1905,37 +3051,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:20:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:25:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1943,23 +3083,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "de8734d7-84c3-4c41-81bd-9eece509ebd7" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "f8cd27f5-49ad-4eeb-ba02-b8c7c8c1aafc" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "88145d78-0f53-4676-a821-dce5c48f4591" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-correlation-request-id": [ + "88145d78-0f53-4676-a821-dce5c48f4591" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052044Z:f8cd27f5-49ad-4eeb-ba02-b8c7c8c1aafc" + "KOREACENTRAL:20230731T072535Z:88145d78-0f53-4676-a821-dce5c48f4591" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1968,37 +3108,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:20:43 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:25:34 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2006,23 +3140,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "796749dd-93ae-40be-ac8f-a65e681dc71d" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "01cffa1a-756d-40e5-960a-fbc5b85c4c35" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "78442484-569c-4494-9ed3-aa76765ef1fb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-correlation-request-id": [ + "78442484-569c-4494-9ed3-aa76765ef1fb" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052114Z:01cffa1a-756d-40e5-960a-fbc5b85c4c35" + "KOREACENTRAL:20230731T072551Z:78442484-569c-4494-9ed3-aa76765ef1fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2031,37 +3165,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:21:14 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:25:51 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjY4NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "34dae413-00a9-4dc9-a1a7-73acf938794a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2069,23 +3197,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "3235c28e-1142-4266-8d4e-0e129307321a" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "f23ce086-af8f-4118-8c66-147cde21dde0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "a036e30b-8e5a-41eb-bfcb-656a993a8f4c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-correlation-request-id": [ + "a036e30b-8e5a-41eb-bfcb-656a993a8f4c" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052115Z:f23ce086-af8f-4118-8c66-147cde21dde0" + "KOREACENTRAL:20230731T072607Z:a036e30b-8e5a-41eb-bfcb-656a993a8f4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,40 +3222,31 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:21:15 GMT" - ], - "Content-Length": [ - "3389" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Mon, 31 Jul 2023 07:26:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.HDInsight/clusters/hdi-ps-test2685\",\r\n \"name\": \"hdi-ps-test2685\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"86f20d07-a7e0-4311-ad6a-76bd2ea6add5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7476dbdb09e149b0aa589a7b92be0265\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-12T05:07:57.943\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2685-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2685.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2685-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7573.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8620/providers/Microsoft.Storage/storageAccounts/storagepstest7573\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test2685\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8620?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjIwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "0cbe72d4-3b93-40c6-9407-f781d4d9df89" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2136,22 +3255,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" ], "x-ms-request-id": [ - "96221adf-c5cc-43ae-a7f7-c5851295e92f" + "64301be5-0d9d-48fe-82b4-491d68daeeca" ], "x-ms-correlation-request-id": [ - "96221adf-c5cc-43ae-a7f7-c5851295e92f" + "64301be5-0d9d-48fe-82b4-491d68daeeca" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052119Z:96221adf-c5cc-43ae-a7f7-c5851295e92f" + "KOREACENTRAL:20230731T072622Z:64301be5-0d9d-48fe-82b4-491d68daeeca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2160,7 +3279,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:21:18 GMT" + "Mon, 31 Jul 2023 07:26:22 GMT" ], "Expires": [ "-1" @@ -2173,18 +3292,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2193,22 +3312,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11978" ], "x-ms-request-id": [ - "57e630b0-1219-4c62-9d8c-e39a22f5d8b1" + "8c90e593-4e2b-4276-b74c-050d9e63b591" ], "x-ms-correlation-request-id": [ - "57e630b0-1219-4c62-9d8c-e39a22f5d8b1" + "8c90e593-4e2b-4276-b74c-050d9e63b591" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052134Z:57e630b0-1219-4c62-9d8c-e39a22f5d8b1" + "KOREACENTRAL:20230731T072638Z:8c90e593-4e2b-4276-b74c-050d9e63b591" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2217,7 +3336,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:21:34 GMT" + "Mon, 31 Jul 2023 07:26:37 GMT" ], "Expires": [ "-1" @@ -2230,18 +3349,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2250,22 +3369,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11977" ], "x-ms-request-id": [ - "1fafa960-a458-482d-b690-c3ed3deb6cba" + "d0787b6a-4b36-4010-a7a1-cc4bb636d4b2" ], "x-ms-correlation-request-id": [ - "1fafa960-a458-482d-b690-c3ed3deb6cba" + "d0787b6a-4b36-4010-a7a1-cc4bb636d4b2" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052150Z:1fafa960-a458-482d-b690-c3ed3deb6cba" + "KOREACENTRAL:20230731T072653Z:d0787b6a-4b36-4010-a7a1-cc4bb636d4b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2274,7 +3393,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:21:49 GMT" + "Mon, 31 Jul 2023 07:26:53 GMT" ], "Expires": [ "-1" @@ -2287,18 +3406,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2307,22 +3426,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11976" ], "x-ms-request-id": [ - "d0e12fbb-aa91-489b-a5dd-22c18cb76a63" + "8bd022d6-9f5e-46e2-a331-ceef4a3b9339" ], "x-ms-correlation-request-id": [ - "d0e12fbb-aa91-489b-a5dd-22c18cb76a63" + "8bd022d6-9f5e-46e2-a331-ceef4a3b9339" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052205Z:d0e12fbb-aa91-489b-a5dd-22c18cb76a63" + "KOREACENTRAL:20230731T072709Z:8bd022d6-9f5e-46e2-a331-ceef4a3b9339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2331,7 +3450,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:22:04 GMT" + "Mon, 31 Jul 2023 07:27:08 GMT" ], "Expires": [ "-1" @@ -2344,18 +3463,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2364,22 +3483,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11975" ], "x-ms-request-id": [ - "9abc6dc1-56c8-4fb4-b2ca-075098a6c2b0" + "0d72859e-db17-4e54-9ce7-624d44d407cd" ], "x-ms-correlation-request-id": [ - "9abc6dc1-56c8-4fb4-b2ca-075098a6c2b0" + "0d72859e-db17-4e54-9ce7-624d44d407cd" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052220Z:9abc6dc1-56c8-4fb4-b2ca-075098a6c2b0" + "KOREACENTRAL:20230731T072724Z:0d72859e-db17-4e54-9ce7-624d44d407cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2388,7 +3507,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:22:20 GMT" + "Mon, 31 Jul 2023 07:27:24 GMT" ], "Expires": [ "-1" @@ -2401,18 +3520,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2421,22 +3540,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11974" ], "x-ms-request-id": [ - "0eb87a06-ad4e-40c7-ac48-bef864dd2d7f" + "cd1bf0d1-9788-4fd2-b235-006b536ef761" ], "x-ms-correlation-request-id": [ - "0eb87a06-ad4e-40c7-ac48-bef864dd2d7f" + "cd1bf0d1-9788-4fd2-b235-006b536ef761" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052236Z:0eb87a06-ad4e-40c7-ac48-bef864dd2d7f" + "KOREACENTRAL:20230731T072740Z:cd1bf0d1-9788-4fd2-b235-006b536ef761" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2445,7 +3564,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:22:36 GMT" + "Mon, 31 Jul 2023 07:27:39 GMT" ], "Expires": [ "-1" @@ -2458,18 +3577,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2478,22 +3597,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11973" ], "x-ms-request-id": [ - "677fdbfe-02cd-4c66-9e32-bc8b6e135693" + "aea5cf10-b102-4346-b3f8-af6086a5c76d" ], "x-ms-correlation-request-id": [ - "677fdbfe-02cd-4c66-9e32-bc8b6e135693" + "aea5cf10-b102-4346-b3f8-af6086a5c76d" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052251Z:677fdbfe-02cd-4c66-9e32-bc8b6e135693" + "KOREACENTRAL:20230731T072755Z:aea5cf10-b102-4346-b3f8-af6086a5c76d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2502,7 +3621,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:22:51 GMT" + "Mon, 31 Jul 2023 07:27:54 GMT" ], "Expires": [ "-1" @@ -2515,18 +3634,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2535,22 +3654,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11972" ], "x-ms-request-id": [ - "3fbe9717-a398-4a97-897d-b502374252f6" + "d5cc657e-6419-43d0-81a9-9c2c78f6edaf" ], "x-ms-correlation-request-id": [ - "3fbe9717-a398-4a97-897d-b502374252f6" + "d5cc657e-6419-43d0-81a9-9c2c78f6edaf" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052307Z:3fbe9717-a398-4a97-897d-b502374252f6" + "KOREACENTRAL:20230731T072811Z:d5cc657e-6419-43d0-81a9-9c2c78f6edaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2559,7 +3678,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:23:07 GMT" + "Mon, 31 Jul 2023 07:28:10 GMT" ], "Expires": [ "-1" @@ -2572,18 +3691,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2592,22 +3711,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11971" ], "x-ms-request-id": [ - "37519c73-26b8-41c8-91fb-bf35736b6ace" + "94b907e0-e9a8-4872-8ddf-226360c60946" ], "x-ms-correlation-request-id": [ - "37519c73-26b8-41c8-91fb-bf35736b6ace" + "94b907e0-e9a8-4872-8ddf-226360c60946" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052322Z:37519c73-26b8-41c8-91fb-bf35736b6ace" + "KOREACENTRAL:20230731T072826Z:94b907e0-e9a8-4872-8ddf-226360c60946" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2616,7 +3735,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:23:22 GMT" + "Mon, 31 Jul 2023 07:28:26 GMT" ], "Expires": [ "-1" @@ -2629,18 +3748,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2649,22 +3768,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11970" ], "x-ms-request-id": [ - "cd7b7379-4486-4b14-a6d3-6041bad5ca85" + "f4578308-a60f-4f84-a5d6-b1fd12ce9f72" ], "x-ms-correlation-request-id": [ - "cd7b7379-4486-4b14-a6d3-6041bad5ca85" + "f4578308-a60f-4f84-a5d6-b1fd12ce9f72" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052337Z:cd7b7379-4486-4b14-a6d3-6041bad5ca85" + "KOREACENTRAL:20230731T072842Z:f4578308-a60f-4f84-a5d6-b1fd12ce9f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2673,7 +3792,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:23:37 GMT" + "Mon, 31 Jul 2023 07:28:41 GMT" ], "Expires": [ "-1" @@ -2686,18 +3805,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2706,22 +3825,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11969" ], "x-ms-request-id": [ - "0ae8fcfd-bdd9-42e7-ae67-68c5f319e18f" + "bb3e7427-c6f9-4d3c-8296-1cf7ac7a679e" ], "x-ms-correlation-request-id": [ - "0ae8fcfd-bdd9-42e7-ae67-68c5f319e18f" + "bb3e7427-c6f9-4d3c-8296-1cf7ac7a679e" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052353Z:0ae8fcfd-bdd9-42e7-ae67-68c5f319e18f" + "KOREACENTRAL:20230731T072857Z:bb3e7427-c6f9-4d3c-8296-1cf7ac7a679e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2730,7 +3849,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:23:52 GMT" + "Mon, 31 Jul 2023 07:28:57 GMT" ], "Expires": [ "-1" @@ -2743,18 +3862,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2763,22 +3882,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11968" ], "x-ms-request-id": [ - "357c3a40-ca39-43e4-a7a8-ae869b9d35e3" + "57ba35ff-e85c-4934-accd-07bdc3803728" ], "x-ms-correlation-request-id": [ - "357c3a40-ca39-43e4-a7a8-ae869b9d35e3" + "57ba35ff-e85c-4934-accd-07bdc3803728" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052408Z:357c3a40-ca39-43e4-a7a8-ae869b9d35e3" + "KOREACENTRAL:20230731T072913Z:57ba35ff-e85c-4934-accd-07bdc3803728" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2787,7 +3906,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:24:07 GMT" + "Mon, 31 Jul 2023 07:29:13 GMT" ], "Expires": [ "-1" @@ -2800,18 +3919,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2820,22 +3939,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11967" ], "x-ms-request-id": [ - "540abf17-eaa3-4f48-80ed-a6484fb990d0" + "e94d4f68-8e96-4cfc-979b-a1039e62788f" ], "x-ms-correlation-request-id": [ - "540abf17-eaa3-4f48-80ed-a6484fb990d0" + "e94d4f68-8e96-4cfc-979b-a1039e62788f" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052423Z:540abf17-eaa3-4f48-80ed-a6484fb990d0" + "KOREACENTRAL:20230731T072928Z:e94d4f68-8e96-4cfc-979b-a1039e62788f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2844,7 +3963,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:24:23 GMT" + "Mon, 31 Jul 2023 07:29:28 GMT" ], "Expires": [ "-1" @@ -2857,18 +3976,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2877,22 +3996,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11966" ], "x-ms-request-id": [ - "0da2809f-99af-47a7-9fc9-8547451964a7" + "3fedfbb4-b8f9-4f43-83a3-a8e453c7a09e" ], "x-ms-correlation-request-id": [ - "0da2809f-99af-47a7-9fc9-8547451964a7" + "3fedfbb4-b8f9-4f43-83a3-a8e453c7a09e" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052439Z:0da2809f-99af-47a7-9fc9-8547451964a7" + "KOREACENTRAL:20230731T072944Z:3fedfbb4-b8f9-4f43-83a3-a8e453c7a09e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2901,7 +4020,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:24:38 GMT" + "Mon, 31 Jul 2023 07:29:43 GMT" ], "Expires": [ "-1" @@ -2914,18 +4033,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2934,22 +4053,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11965" ], "x-ms-request-id": [ - "7903c73a-cb53-4f3c-911a-f0e4b40fcd1d" + "3162f9f2-030f-44b6-95b9-f90a2e9b3d6c" ], "x-ms-correlation-request-id": [ - "7903c73a-cb53-4f3c-911a-f0e4b40fcd1d" + "3162f9f2-030f-44b6-95b9-f90a2e9b3d6c" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052454Z:7903c73a-cb53-4f3c-911a-f0e4b40fcd1d" + "KOREACENTRAL:20230731T072959Z:3162f9f2-030f-44b6-95b9-f90a2e9b3d6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2958,7 +4077,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:24:54 GMT" + "Mon, 31 Jul 2023 07:29:59 GMT" ], "Expires": [ "-1" @@ -2971,18 +4090,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2991,22 +4110,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11964" ], "x-ms-request-id": [ - "958162ca-dc38-4e58-937b-805cfd0a6dfa" + "d68d86a6-3d68-4972-90e5-9d6e3b5c75a3" ], "x-ms-correlation-request-id": [ - "958162ca-dc38-4e58-937b-805cfd0a6dfa" + "d68d86a6-3d68-4972-90e5-9d6e3b5c75a3" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052509Z:958162ca-dc38-4e58-937b-805cfd0a6dfa" + "KOREACENTRAL:20230731T073015Z:d68d86a6-3d68-4972-90e5-9d6e3b5c75a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3015,7 +4134,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:25:09 GMT" + "Mon, 31 Jul 2023 07:30:14 GMT" ], "Expires": [ "-1" @@ -3028,18 +4147,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3048,22 +4167,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11963" ], "x-ms-request-id": [ - "cb60d062-40ae-4cc2-b7c6-da949238ca7f" + "ddc358c5-0f81-4408-a6aa-1f05d376f4b0" ], "x-ms-correlation-request-id": [ - "cb60d062-40ae-4cc2-b7c6-da949238ca7f" + "ddc358c5-0f81-4408-a6aa-1f05d376f4b0" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052525Z:cb60d062-40ae-4cc2-b7c6-da949238ca7f" + "KOREACENTRAL:20230731T073031Z:ddc358c5-0f81-4408-a6aa-1f05d376f4b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3072,7 +4191,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:25:24 GMT" + "Mon, 31 Jul 2023 07:30:31 GMT" ], "Expires": [ "-1" @@ -3085,18 +4204,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3105,22 +4224,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11962" ], "x-ms-request-id": [ - "fc4e4f64-424a-4e66-a383-75762d95bdb6" + "c20cb0d6-da58-45c1-a30d-29dc57972db3" ], "x-ms-correlation-request-id": [ - "fc4e4f64-424a-4e66-a383-75762d95bdb6" + "c20cb0d6-da58-45c1-a30d-29dc57972db3" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052541Z:fc4e4f64-424a-4e66-a383-75762d95bdb6" + "KOREACENTRAL:20230731T073047Z:c20cb0d6-da58-45c1-a30d-29dc57972db3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3129,7 +4248,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:25:40 GMT" + "Mon, 31 Jul 2023 07:30:46 GMT" ], "Expires": [ "-1" @@ -3142,18 +4261,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3162,22 +4281,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11961" ], "x-ms-request-id": [ - "ed23bb81-32f5-4634-a929-ce8ac46a5481" + "09320b1d-d5e5-4007-9841-9dce5a99881b" ], "x-ms-correlation-request-id": [ - "ed23bb81-32f5-4634-a929-ce8ac46a5481" + "09320b1d-d5e5-4007-9841-9dce5a99881b" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052556Z:ed23bb81-32f5-4634-a929-ce8ac46a5481" + "KOREACENTRAL:20230731T073102Z:09320b1d-d5e5-4007-9841-9dce5a99881b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3186,7 +4305,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:25:55 GMT" + "Mon, 31 Jul 2023 07:31:02 GMT" ], "Expires": [ "-1" @@ -3199,18 +4318,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3219,22 +4338,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11960" ], "x-ms-request-id": [ - "9bb487af-bb9a-4b9a-854d-279442683b9b" + "cff427e9-de26-4301-bb68-270413767f59" ], "x-ms-correlation-request-id": [ - "9bb487af-bb9a-4b9a-854d-279442683b9b" + "cff427e9-de26-4301-bb68-270413767f59" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052611Z:9bb487af-bb9a-4b9a-854d-279442683b9b" + "KOREACENTRAL:20230731T073118Z:cff427e9-de26-4301-bb68-270413767f59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3243,7 +4362,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:26:10 GMT" + "Mon, 31 Jul 2023 07:31:17 GMT" ], "Expires": [ "-1" @@ -3256,18 +4375,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3276,22 +4395,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11959" ], "x-ms-request-id": [ - "7362341f-519c-4586-bf21-ab17eece6493" + "d357ca3b-7f0e-4129-9454-96e767eae82a" ], "x-ms-correlation-request-id": [ - "7362341f-519c-4586-bf21-ab17eece6493" + "d357ca3b-7f0e-4129-9454-96e767eae82a" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052627Z:7362341f-519c-4586-bf21-ab17eece6493" + "KOREACENTRAL:20230731T073133Z:d357ca3b-7f0e-4129-9454-96e767eae82a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3300,7 +4419,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:26:27 GMT" + "Mon, 31 Jul 2023 07:31:33 GMT" ], "Expires": [ "-1" @@ -3313,18 +4432,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3333,22 +4452,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11958" ], "x-ms-request-id": [ - "1791016f-c95e-4ab5-b4d9-88af529c9f49" + "52469721-25f6-4847-8bdb-8d52be955f9f" ], "x-ms-correlation-request-id": [ - "1791016f-c95e-4ab5-b4d9-88af529c9f49" + "52469721-25f6-4847-8bdb-8d52be955f9f" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052642Z:1791016f-c95e-4ab5-b4d9-88af529c9f49" + "KOREACENTRAL:20230731T073148Z:52469721-25f6-4847-8bdb-8d52be955f9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3357,7 +4476,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:26:42 GMT" + "Mon, 31 Jul 2023 07:31:48 GMT" ], "Expires": [ "-1" @@ -3370,18 +4489,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3390,22 +4509,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11957" ], "x-ms-request-id": [ - "95e76b3f-d1de-4e06-a127-d5888353e095" + "aaf6b522-d55b-420f-82b5-dfb378a3e9ef" ], "x-ms-correlation-request-id": [ - "95e76b3f-d1de-4e06-a127-d5888353e095" + "aaf6b522-d55b-420f-82b5-dfb378a3e9ef" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052658Z:95e76b3f-d1de-4e06-a127-d5888353e095" + "KOREACENTRAL:20230731T073204Z:aaf6b522-d55b-420f-82b5-dfb378a3e9ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3414,7 +4533,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:26:57 GMT" + "Mon, 31 Jul 2023 07:32:03 GMT" ], "Expires": [ "-1" @@ -3427,18 +4546,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3447,22 +4566,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11956" ], "x-ms-request-id": [ - "8eea0ce0-5a49-479c-8760-573ec896491c" + "5889d28a-9cea-4df1-aba0-4be8b6319cff" ], "x-ms-correlation-request-id": [ - "8eea0ce0-5a49-479c-8760-573ec896491c" + "5889d28a-9cea-4df1-aba0-4be8b6319cff" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052713Z:8eea0ce0-5a49-479c-8760-573ec896491c" + "KOREACENTRAL:20230731T073219Z:5889d28a-9cea-4df1-aba0-4be8b6319cff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3471,7 +4590,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:27:12 GMT" + "Mon, 31 Jul 2023 07:32:19 GMT" ], "Expires": [ "-1" @@ -3484,18 +4603,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3504,22 +4623,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11955" ], "x-ms-request-id": [ - "d112666e-a5ce-4af7-8869-d00ca1616603" + "3c6e813c-a1a2-4dde-9373-f7ca11c55755" ], "x-ms-correlation-request-id": [ - "d112666e-a5ce-4af7-8869-d00ca1616603" + "3c6e813c-a1a2-4dde-9373-f7ca11c55755" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052728Z:d112666e-a5ce-4af7-8869-d00ca1616603" + "KOREACENTRAL:20230731T073235Z:3c6e813c-a1a2-4dde-9373-f7ca11c55755" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3528,7 +4647,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:27:28 GMT" + "Mon, 31 Jul 2023 07:32:34 GMT" ], "Expires": [ "-1" @@ -3541,18 +4660,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3561,22 +4680,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11954" ], "x-ms-request-id": [ - "209ede93-a520-4640-985d-c8d16c03ffdc" + "27a3e404-5eec-4a83-8e66-adcd07b62f8c" ], "x-ms-correlation-request-id": [ - "209ede93-a520-4640-985d-c8d16c03ffdc" + "27a3e404-5eec-4a83-8e66-adcd07b62f8c" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052744Z:209ede93-a520-4640-985d-c8d16c03ffdc" + "KOREACENTRAL:20230731T073250Z:27a3e404-5eec-4a83-8e66-adcd07b62f8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3585,7 +4704,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:27:43 GMT" + "Mon, 31 Jul 2023 07:32:50 GMT" ], "Expires": [ "-1" @@ -3598,18 +4717,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3618,22 +4737,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11953" ], "x-ms-request-id": [ - "3f79bbce-ee1d-429b-811c-37067f059e65" + "33769b78-3169-416d-ba10-8096fbec15e0" ], "x-ms-correlation-request-id": [ - "3f79bbce-ee1d-429b-811c-37067f059e65" + "33769b78-3169-416d-ba10-8096fbec15e0" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052759Z:3f79bbce-ee1d-429b-811c-37067f059e65" + "KOREACENTRAL:20230731T073306Z:33769b78-3169-416d-ba10-8096fbec15e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3642,7 +4761,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:27:58 GMT" + "Mon, 31 Jul 2023 07:33:06 GMT" ], "Expires": [ "-1" @@ -3655,18 +4774,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3675,22 +4794,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11952" ], "x-ms-request-id": [ - "11b41b02-2714-4c28-8db2-d6f756523297" + "42882f4a-101a-4d86-8a2d-237a297d6902" ], "x-ms-correlation-request-id": [ - "11b41b02-2714-4c28-8db2-d6f756523297" + "42882f4a-101a-4d86-8a2d-237a297d6902" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052814Z:11b41b02-2714-4c28-8db2-d6f756523297" + "KOREACENTRAL:20230731T073334Z:42882f4a-101a-4d86-8a2d-237a297d6902" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3699,7 +4818,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:28:13 GMT" + "Mon, 31 Jul 2023 07:33:34 GMT" ], "Expires": [ "-1" @@ -3712,18 +4831,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3731,17 +4850,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11951" ], "x-ms-request-id": [ - "2b9b24c5-ed5e-47dc-a105-09e1cf2e380f" + "ec91fa27-b8f5-463e-a1f0-fb4f86a8b310" ], "x-ms-correlation-request-id": [ - "2b9b24c5-ed5e-47dc-a105-09e1cf2e380f" + "ec91fa27-b8f5-463e-a1f0-fb4f86a8b310" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052830Z:2b9b24c5-ed5e-47dc-a105-09e1cf2e380f" + "KOREACENTRAL:20230731T073350Z:ec91fa27-b8f5-463e-a1f0-fb4f86a8b310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3750,7 +4875,7 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:28:29 GMT" + "Mon, 31 Jul 2023 07:33:49 GMT" ], "Expires": [ "-1" @@ -3760,21 +4885,21 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjAtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpBdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDMwODUtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE13T0RVdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3783,16 +4908,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11950" ], "x-ms-request-id": [ - "d9669f77-ca76-4cc0-92f2-5e24d6e69666" + "caff135e-d485-40a2-9910-0b40167e930b" ], "x-ms-correlation-request-id": [ - "d9669f77-ca76-4cc0-92f2-5e24d6e69666" + "caff135e-d485-40a2-9910-0b40167e930b" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211012T052830Z:d9669f77-ca76-4cc0-92f2-5e24d6e69666" + "KOREACENTRAL:20230731T073405Z:caff135e-d485-40a2-9910-0b40167e930b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3801,24 +4926,27 @@ "nosniff" ], "Date": [ - "Tue, 12 Oct 2021 05:28:29 GMT" + "Mon, 31 Jul 2023 07:34:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], "Content-Length": [ - "0" + "10119" ] }, - "ResponseBody": "", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupDeletionBlocked\",\r\n \"message\": \"Deletion of resource group 'group-ps-test3085' failed as '13' resources could not be deleted. The provisioning state of the resource group will be rolled back. The tracking Id is '5269778b-920f-419c-b1ef-8a05e593ce4a'. Please check audit logs for more details.\",\r\n \"details\": [\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-workernode-2-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-workernode-2-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/workernode-0-vm-2.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-gateway-1-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-gateway-1-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/gateway-0-vm-1.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-workernode-0-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-workernode-0-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/workernode-0-vm-0.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-headnode-1-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-headnode-1-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/headnode-0-vm-1.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-zookeepernode-3-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-zookeepernode-3-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/zookeepernode-0-vm-3.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.HDInsight/clusters/hdi-ps-test4064\",\r\n \"message\": \"null\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-gateway-0-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-gateway-0-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/gateway-0-vm-0.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-zookeepernode-2-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-zookeepernode-2-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/zookeepernode-0-vm-2.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/loadBalancers/headnode-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"Error\\\":{\\\"Code\\\":\\\"ResourceDeletionFailed\\\",\\\"Target\\\":null,\\\"Message\\\":\\\"The request to delete the resource 'Microsoft.Network/loadBalancers/headnode-fe9f91e565584eddbf282a33b109d2b8' failed. subscription id '964c10bb-8a6c-43bc-83d3-6b318c6c7305', activity id 'cddc9400-91ec-4be0-b46b-18c7907fbd28', request correlation id '5269778b-920f-419c-b1ef-8a05e593ce4a'.\\\",\\\"Details\\\":null,\\\"AdditionalInfo\\\":null}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/publicIPAddresses/publicIpheadnode-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"PublicIPAddressCannotBeDeleted\\\",\\\"message\\\":\\\"Public IP address /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/publicIPAddresses/publicIpheadnode-fe9f91e565584eddbf282a33b109d2b8 can not be deleted since it is still allocated to resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/loadBalancers/headnode-fe9f91e565584eddbf282a33b109d2b8/frontendIPConfigurations/LBFE. In order to delete the public IP, disassociate/detach the Public IP address from the resource. To learn how to do this, see aka.ms/deletepublicip.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-headnode-0-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-headnode-0-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/headnode-0-vm-0.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-workernode-3-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-workernode-3-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/workernode-0-vm-3.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n },\r\n {\r\n \"target\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-zookeepernode-1-fe9f91e565584eddbf282a33b109d2b8\",\r\n \"message\": \"{\\\"error\\\":{\\\"code\\\":\\\"NicInUse\\\",\\\"message\\\":\\\"Network Interface /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3085/providers/Microsoft.Network/networkInterfaces/nic-zookeepernode-1-fe9f91e565584eddbf282a33b109d2b8 is used by existing resource /subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rg0-fe9f91e565584eddbf282a33b109d2b8resourcegroup/providers/Microsoft.Compute/virtualMachines/zookeepernode-0-vm-1.154e7f2c. In order to delete the network interface, it must be dissociated from the resource. To learn more, see aka.ms/deletenic.\\\",\\\"details\\\":[]}}\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 409 } ], "Names": { "Test-CreateClusterWithAvailabilityZones": [ - "hdi-ps-test2685", - "group-ps-test8620", - "storagepstest7573" + "hdi-ps-test4064", + "group-ps-test3085", + "storagepstest112" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithComputeIsolation.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithComputeIsolation.json deleted file mode 100644 index 968000cb3d14..000000000000 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithComputeIsolation.json +++ /dev/null @@ -1,3075 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7891?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "43f0bc43-67a1-4358-90eb-ca707ce71eda" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "cf2b048c-2e81-442d-86ea-7b38db895c28" - ], - "x-ms-correlation-request-id": [ - "cf2b048c-2e81-442d-86ea-7b38db895c28" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132125Z:cf2b048c-2e81-442d-86ea-7b38db895c28" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:21:24 GMT" - ], - "Content-Length": [ - "195" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891\",\r\n \"name\": \"group-ps-test7891\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.Storage/storageAccounts/storagepstest3715?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDM3MTU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "28fb7577-64f2-486c-a6a6-a4c49fb750de" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "110" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/ab8e2115-a66a-47e8-89c9-55eea1a2b88d?monitor=true&api-version=2017-10-01" - ], - "Retry-After": [ - "17" - ], - "x-ms-request-id": [ - "ab8e2115-a66a-47e8-89c9-55eea1a2b88d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-correlation-request-id": [ - "61c6d81e-e076-4fc7-be77-3e207adcee03" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132133Z:61c6d81e-e076-4fc7-be77-3e207adcee03" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:21:33 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/ab8e2115-a66a-47e8-89c9-55eea1a2b88d?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zL2FiOGUyMTE1LWE2NmEtNDdlOC04OWM5LTU1ZWVhMWEyYjg4ZD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a4f2029b-1534-4eaf-bf12-0201000bc479" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "dbd57c54-0f49-439e-ae5c-d76eebca46dd" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132151Z:dbd57c54-0f49-439e-ae5c-d76eebca46dd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:21:50 GMT" - ], - "Content-Length": [ - "1408" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.Storage/storageAccounts/storagepstest3715\",\r\n \"name\": \"storagepstest3715\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-08T13:21:32.1738397Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-08T13:21:32.1738397Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-02-08T13:21:32.0800901Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3715.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3715.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3715.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest3715.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3715-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3715-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3715-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.Storage/storageAccounts/storagepstest3715/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDM3MTUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "529802c5-d37f-4d74-8b31-fa8245214e22" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "918110ba-21e7-4aae-b9f6-dea6a3e2af1b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "e1026128-261c-47eb-b3ba-ef5ffdf05d7a" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132151Z:e1026128-261c-47eb-b3ba-ef5ffdf05d7a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:21:50 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"EodV01iVQCm9+saOVbg5GSdpGh/A9iNbSxHucIR8mgLRQpAYR0/vkpdc5cuGLkWsGyNwuWkECSUCcSq5Pj6Nmg==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"iMLXJ6HI7H8VK5Qcp8PD1kTUrdELOwJl030WBAAdAOW1EHUl9309ubmmsD8aaL154P9jMIvu002iSoAQRTXzUA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9iaWxsaW5nU3BlY3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "34d6b6cd-4bfc-4f92-9dba-5df5687bc228" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "fc80615f-4c53-419a-95a4-7c7cc5352297" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132153Z:fc80615f-4c53-419a-95a4-7c7cc5352297" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:21:53 GMT" - ], - "Content-Length": [ - "118417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A10\",\r\n \"A11\",\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"A8\",\r\n \"A9\",\r\n \"G1\",\r\n \"G2\",\r\n \"G3\",\r\n \"G4\",\r\n \"G5\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E16S_V3\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E32S_V3\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E4S_V3\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E64S_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E8S_V3\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_G1\",\r\n \"STANDARD_G2\",\r\n \"STANDARD_G3\",\r\n \"STANDARD_G4\",\r\n \"STANDARD_G5\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\",\r\n \"STANDARD_NC24\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E16s_v3\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E32s_v3\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E4s_v3\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E64s_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E8s_v3\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\",\r\n \"3.6\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A10\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A10 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A11 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A9 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16S_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E16s_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 274878,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32S_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E32s_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 549756,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E4S_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E4s_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 68720,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64S_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64s_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E8S_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E8s_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 137439,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G1(2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"STANDARD_G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"STANDARD_G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"STANDARD_G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"STANDARD_G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_NC24\",\r\n \"cores\": 24,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_NC24 (24 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1474560,\r\n \"webWorkerResourceDiskSizeInMb\": 1474560\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"South Central US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E16S_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E8S_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_E2S_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3715.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test373\",\r\n \"key\": \"EodV01iVQCm9+saOVbg5GSdpGh/A9iNbSxHucIR8mgLRQpAYR0/vkpdc5cuGLkWsGyNwuWkECSUCcSq5Pj6Nmg==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.Storage/storageAccounts/storagepstest3715\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true\r\n }\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2237" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"a283d4a5-595f-404c-b30a-fc1f6e2847fd\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "09bc1c3f-2915-424c-b894-1c08d18781e4" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f4b23a1f-55d5-4436-bfa1-28868ab1fae6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132203Z:f4b23a1f-55d5-4436-bfa1-28868ab1fae6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:22:03 GMT" - ], - "Content-Length": [ - "1972" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373\",\r\n \"name\": \"hdi-ps-test373\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"a283d4a5-595f-404c-b30a-fc1f6e2847fd\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"51a0e2c9e1ea42a6975229149255a798\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-02-08T13:22:02.16\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3715.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.Storage/storageAccounts/storagepstest3715\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test373\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1e514f1e-adb4-4f0e-b4f1-12e79a767842" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "829dcb9f-7308-4fa0-bb0d-7de2e7f9a2af" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132234Z:829dcb9f-7308-4fa0-bb0d-7de2e7f9a2af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:22:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3f1ef087-d701-465d-9b69-c9cb663b35b2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a952fad5-d919-475b-893b-b2e5fe53ac5c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132304Z:a952fad5-d919-475b-893b-b2e5fe53ac5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:23:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ac819de5-2a0a-40ac-82f8-6ee5ca2528b0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "1752763c-ef5c-48c9-b40b-1e1ec0de3e8a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132334Z:1752763c-ef5c-48c9-b40b-1e1ec0de3e8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:23:34 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c4c2ca17-f108-4bbd-82cd-603918936b8a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "21a21acc-f8d3-42f1-b7f6-8c574f752fb1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132405Z:21a21acc-f8d3-42f1-b7f6-8c574f752fb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:24:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "73fa37c1-eea9-409f-8d2a-4cc878f017e6" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "51b88b8c-617f-4cbf-9926-5ba30f64b606" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132435Z:51b88b8c-617f-4cbf-9926-5ba30f64b606" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:24:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "76165eb3-1a39-4c4a-9da3-0bf3de067bb1" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "4120ea4c-5c28-43a8-bec2-a39e5221520f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132506Z:4120ea4c-5c28-43a8-bec2-a39e5221520f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:25:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b1831f97-df56-4698-823e-878879badc02" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "adf7ce81-5062-4cdc-8f32-350dd772f8c0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132537Z:adf7ce81-5062-4cdc-8f32-350dd772f8c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:25:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dfb8b6b3-2bbd-4c25-b27e-a39be267d2a2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "25e41725-23f5-46b5-ae16-a349c0a6e270" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132607Z:25e41725-23f5-46b5-ae16-a349c0a6e270" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:26:07 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd4e3db4-64bc-4a72-8c97-86a052c225a2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "473bc75d-5a7d-4ed3-b51a-a14b0b8f9d3e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132638Z:473bc75d-5a7d-4ed3-b51a-a14b0b8f9d3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:26:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "464dd45c-961f-401e-a53b-e164d8972203" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f33a490a-f54a-4569-a726-0c75e1b4c9fe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132709Z:f33a490a-f54a-4569-a726-0c75e1b4c9fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:27:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "957ce764-ebed-41c0-a61e-986deed8cae4" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "25b8634d-3f52-4021-95b0-6fc36d5054e4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132740Z:25b8634d-3f52-4021-95b0-6fc36d5054e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:27:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "538e5819-783a-467a-b6ed-ccbd2d7e10be" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "54ecc22c-3122-44e1-9cde-c38e12fd9b98" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132810Z:54ecc22c-3122-44e1-9cde-c38e12fd9b98" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:28:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d72e3dd3-8420-4a08-9a9b-4fa57a91a070" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "595022a0-0870-4976-9d88-fdac48f9f420" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132841Z:595022a0-0870-4976-9d88-fdac48f9f420" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:28:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b166ab27-f206-4b69-a754-12a03e5f6f66" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "313c86ed-8553-42c4-bcdd-26f250d29b54" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132912Z:313c86ed-8553-42c4-bcdd-26f250d29b54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:29:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "80dc103d-6e54-4029-9255-a8dd227a204b" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "d078d827-a347-4683-b3c4-8d181acd5fe4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132942Z:d078d827-a347-4683-b3c4-8d181acd5fe4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:29:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ec91ef3c-b7d7-4033-8fcd-84cf76e0f470" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "dccc5b33-5446-4293-bd4a-86cb9f8ebda6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133013Z:dccc5b33-5446-4293-bd4a-86cb9f8ebda6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:30:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "17db4c7d-e956-495e-84d1-ad5ad2514ae6" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "fa7f6d26-90c1-4e72-8c9e-aba1e48b79ab" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133044Z:fa7f6d26-90c1-4e72-8c9e-aba1e48b79ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:30:44 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ee4475b1-a4fe-47e8-939a-8694f0c1cdec" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "54093537-966d-438c-ad07-72226b7381f8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133115Z:54093537-966d-438c-ad07-72226b7381f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:31:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "64e9affc-2573-4feb-8a76-0c066fb6db50" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "1218b3be-bd96-4e7d-848d-c3289f636d00" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133145Z:1218b3be-bd96-4e7d-848d-c3289f636d00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:31:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0d8728cb-9202-4b7d-a8a8-49f5d3729480" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "9d617610-0f6e-4f5b-b7cb-4f680be82f17" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133216Z:9d617610-0f6e-4f5b-b7cb-4f680be82f17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:32:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bc87a4f0-decb-4816-b52f-6cf66e0def13" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "91b27d3b-4c5b-4d76-94aa-aebc5759eb41" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133247Z:91b27d3b-4c5b-4d76-94aa-aebc5759eb41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:32:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "924d9062-9dcb-45df-9649-ce676c00176f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5d8e19ad-4a87-403e-ac08-51a65eba7125" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133317Z:5d8e19ad-4a87-403e-ac08-51a65eba7125" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:33:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "086e8f3b-18d6-4331-ac5b-2eef2cba8282" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "91231f44-913b-46b6-be5f-d5e44de911ab" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133348Z:91231f44-913b-46b6-be5f-d5e44de911ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:33:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9dddaac3-b0ff-4e4a-a63f-30f02b66c04d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "70e94fd7-69e3-4570-94e6-065ccf0fdc14" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133418Z:70e94fd7-69e3-4570-94e6-065ccf0fdc14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:34:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fc339696-7ef9-4889-b409-58d1006d76ce" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "9cb0d9cc-68fc-4d2a-874c-37ba3fb2e45b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133449Z:9cb0d9cc-68fc-4d2a-874c-37ba3fb2e45b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:34:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b9cadc0f-32a7-4af2-8ce5-438116fd0a03" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "de0da5b9-eafa-489e-98f0-1c8a3ab0cd5c" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T133519Z:de0da5b9-eafa-489e-98f0-1c8a3ab0cd5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:35:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczL2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c2178a0c-060b-4247-bb16-7bf6261721f7" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e90cff8b-b4a2-4edb-a765-896679b67972" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134103Z:e90cff8b-b4a2-4edb-a765-896679b67972" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:41:02 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "88e11385-84e7-45e0-a165-94392bdeb3a6" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "514f0808-b34e-45cc-ae8e-883a1bf8f2e1" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "11e50cc8-3104-409a-b3cc-bb0f7dc1870d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134103Z:11e50cc8-3104-409a-b3cc-bb0f7dc1870d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:41:03 GMT" - ], - "Content-Length": [ - "2188" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373\",\r\n \"name\": \"hdi-ps-test373\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"a283d4a5-595f-404c-b30a-fc1f6e2847fd\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"51a0e2c9e1ea42a6975229149255a798\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T13:22:02.16\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test373-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test373.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3715.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.Storage/storageAccounts/storagepstest3715\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test373\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4261da9c-051b-42cc-94c0-9b36ad105954" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "99cc7361-a368-4517-b2b6-301c7ba242bb", - "bb9fbd7e-4085-4e02-9b18-2fa19854b5da", - "00f67373-3978-4dda-8fc6-a424be2e69c0", - "31929275-ebf5-4e23-9ade-bda8338f3263", - "37266d7c-c4fb-41c3-b3e4-2481c096377c", - "854c1e05-2f98-4ef4-b22a-6d5c803dd818", - "31994d11-48ac-493a-94f6-c6d8c341e9f4", - "4758b697-6541-4693-b21f-41f459f954b8", - "1b0f573a-7579-4ad8-889f-b61cf844707a", - "545141d0-15ea-4ac4-85a2-478261a10f47", - "cfbb537c-f526-4335-9248-3bb766e083e9", - "1e53a8b4-5328-427e-8772-5d3cb1c516d3", - "6ea97e37-61ae-4bfd-9fb4-c2ba4117e921", - "dcdef9ef-9f6e-452a-80db-ffacdea82c6a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "0a3b01f4-547d-4289-a155-65c3630118a9" - ], - "x-ms-correlation-request-id": [ - "0a3b01f4-547d-4289-a155-65c3630118a9" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134112Z:0a3b01f4-547d-4289-a155-65c3630118a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:41:11 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "260130" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/cluster-1\",\r\n \"name\": \"cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a431157f-6c5a-4fe3-895f-95c8a33fbf2d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"679fd62bb7c34ac3b3418613af779647\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:48:49.733\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cluster1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.Storage/storageAccounts/cluster1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cluster-1-2021-11-18t09-36-59-829z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/fwruletestnostorage\",\r\n \"name\": \"fwruletestnostorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"d6bad2da-8c82-43a4-8987-4004d2864b00\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"38eebfcb4f57454c8ad6c7ec2c7baa48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T04:12:41.03\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: HIVE_METASTORE, HIVE_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER, APP_TIMELINE_SERVER, HISTORYSERVER, LIVY2_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fwruletestnostorage-2021-11-18t04-10-53-063z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/natgwtestshangwei\",\r\n \"name\": \"natgwtestshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"14f96cb1-3274-430b-9b4a-968628247675\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"2b00504bfa6243d5b1e85499a412ea7d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-17T04:59:14.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.2.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"natgwtestshanhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/natgwtestshanhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"natgwtestshangwei-2021-11-17t04-56-40-633z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/noeventhubtestfwrule\",\r\n \"name\": \"noeventhubtestfwrule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9e737c8a-f3f6-4143-8642-01e2669da20a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e704fc8f6ff447df87f193ebf6fa778e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T06:23:52.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"noeventhubtestfwrule-2021-11-18t06-21-43-155z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/plobshangwei1104\",\r\n \"name\": \"plobshangwei1104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"10b8b4f2-1451-4857-96db-d6becd92f052\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e82e156040f04a2084462f47a97e790a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:06:31.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.24\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plobshangwei1104-2021-11-18t03-04-32-097z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/removeservicebus\",\r\n \"name\": \"removeservicebus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"40472f2c-e9cc-4c2a-baea-73f3c83ea6b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"9d24322384fe4bd487f0c530d6a93e0e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:25:54.27\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.40\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"removeservicebus-2021-11-18t09-24-34-018z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-re-hdi\",\r\n \"name\": \"shangwei-re-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6ae5b2-e52a-4218-bc6c-86116159476b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ac85f4d11a8f496f94ff739a8f71790c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-29T07:58:27.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweirehdihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweirehdihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-re-hdi-2021-10-29t07-56-05-875z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-script\",\r\n \"name\": \"shiyi-trial-hadoop-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"1ca32779-0cee-420f-a5ba-908b3185ab74\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c85a253c646c4aaab769bb0118eff80d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-28T08:20:39.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://shiyitrialhadhdistorage.blob.core.windows.net/scriptprivate/test1.sh. Exception message: The remote server returned an error: (404) Not Found..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhadhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhadhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-scri-2021-12-28t08-18-03-877z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-vnet\",\r\n \"name\": \"shiyi-trial-hadoop-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a59f77a7-dd4c-4c94-9959-6910e34f73e9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b4b6c088cc544abb8039c6f8af97e1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:06:25.67\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhdpvnetstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhdpvnetstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-vnet-2021-12-31t03-02-31-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/sn27-shiyi-trial-hadoop-scale\",\r\n \"name\": \"sn27-shiyi-trial-hadoop-scale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"bdf10645-3d33-4502-95f3-d69df6d56ee7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"67cbcdca754c4108936fa75ad6498266\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:34:44.39\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sn27shiyitriahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/sn27shiyitriahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sn27shiyi-trial-hadoop-2021-12-31t03-16-52-081z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/testfwnoule\",\r\n \"name\": \"testfwnoule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9f44e2cc-000b-46af-b38b-e0ef7182c0e7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb384cdc9f1b486b80711578a46abaf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T12:20:39.717\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: APP_TIMELINE_SERVER, HISTORYSERVER, HIVE_METASTORE, HIVE_SERVER, JUPYTER_MASTER, LIVY2_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.55\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testfwnoule-2021-11-18t12-18-19-302z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/wildcardfwruleshangwei\",\r\n \"name\": \"wildcardfwruleshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"22b98b3e-7606-4cfe-8893-3d129cff0cf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"629252fd20ad4a9ab233d8d6b8e103f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:17:24.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wildcardfwruleshangwei-2021-11-18t03-15-34-205z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1ipleak1015\",\r\n \"name\": \"x1ipleak1015\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6f98f45a-83c4-49c9-b1b2-2778db052f65\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"728ba7042d844ed4a77e07116acceadd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-15T02:13:18.147\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1ipleak1015hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1ipleak1015hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1ipleak1015-2021-10-15t02-10-55-571z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziweitrial160\",\r\n \"name\": \"ziweitrial160\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8c4eab1d-99ec-4613-ad11-3489b4d792cf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1ece0f96973f47ac90fc5dc4d15d9111\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-16T09:03:17.753\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitrial160hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitrial160hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweitrial160-2021-11-16t08-55-33-161z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziwei-vnet-pl-cluster\",\r\n \"name\": \"ziwei-vnet-pl-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8f0d2245-ed9f-4404-b8b7-579d52d44a3a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5da9295f9ab9445da64de0d2ad3232db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-12-28T06:45:14.37\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitestvnethdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitestvnethdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziwei-vnet-pl-cluster-2021-12-28t06-42-56-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimeout11152\",\r\n \"name\": \"x1sshtimeout11152\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"793ff34c-4c91-4097-800f-2dc232465e3e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1cdbc57ba4da4e9484582e8d9bf1a549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:51:38.26\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimeout1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimeout1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimeout11-2021-11-15t01-48-59-363z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.HDInsight/clusters/silahu1zonewesteurope1\",\r\n \"name\": \"silahu1zonewesteurope1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"1c136beb-cd76-47c8-b353-e6558cb4eb44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"38db6e1a7b9741eca9d35039be544888\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-21T02:28:39.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahustorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Storage/storageAccounts/silahustorageaccount1\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.HDInsight/clusters/silahu-crosssub-test2\",\r\n \"name\": \"silahu-crosssub-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"089e7bb4-7657-4305-9b0a-20c015e46cc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"642b4c83bb09425f90ff700285b7cfee\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-24T06:02:51.847\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"crosssubsc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.Storage/storageAccounts/crosssubsc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout1115\",\r\n \"name\": \"x1sshtimout1115\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"44ab8c70-4843-4eea-a002-ca7cd35b2eb1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab8de7f7ee9d4cc1b5def2ed3cde382a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T00:44:43.387\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout11-2021-11-15t00-41-36-598z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout11151\",\r\n \"name\": \"x1sshtimout11151\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"7b36a6f7-593f-40f6-99d1-30124df683b3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45d64e947e9a40ed9b88739372195f66\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:39:30.447\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout111-2021-11-15t01-38-23-654z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.HDInsight/clusters/cunfeng-poc-cluster\",\r\n \"name\": \"cunfeng-poc-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ee606cd7-9b59-41d6-a671-5334b8fdaf73\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"edda8b6eef5849a68c20e6268d069b3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T10:49:05.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cunfengpoccluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.Storage/storageAccounts/cunfengpoccluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cunfeng-poc-cluster-2022-02-08t10-46-13-585z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test\",\r\n \"name\": \"pl-silahu-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b3b8670c-6ffb-443d-9f8e-6a8aae83d4cc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3a4bfe669a4147008b4e19238acfb99b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-04T14:00:54.667\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuprivatelinkstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Storage/storageAccounts/silahuprivatelinkstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plsilahu-test-2021-11-04t13-56-21-932z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test/privateEndpointConnections/testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"name\": \"testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelinkconsumer/providers/Microsoft.Network/privateEndpoints/testgateway-privateendpoint\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"536936262\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-ob-nopl\",\r\n \"name\": \"shangwei-ob-nopl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d244f602-b354-47da-9503-409e24881d80\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"59a4b07b702a4b11b9a62df0a20176a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-03T08:43:52.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.16.10.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiobnophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweiobnophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-ob-nopl-2021-11-03t08-38-14-544z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x111081outbound\",\r\n \"name\": \"x111081outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4323c35d-e603-4185-a805-02c2eafa263a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6b914129c5b413cb5d1f9f2fd660773\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-08T03:53:49.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x111081outbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x111081outbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x111081outbound-2021-11-08t03-51-20-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-azsecpack\",\r\n \"name\": \"yalu-azsecpack\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"322625f0-c3da-4054-be75-9311ea323fe3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f849798233f44c3b773b4ab19ee94b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-01-17T12:15:41.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluazsecpackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluazsecpackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-azsecpack-2022-01-17t12-13-51-157z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahu-etest1\",\r\n \"name\": \"silahu-etest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"987f491e-27a6-4ac2-aa54-cb8275600c58\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bc0f1a8324a74614ba7973dcf9b9b2f5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-13T12:54:31.793\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahuetest1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahu-etest1-2021-12-13t12-53-00-904z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahukrtest\",\r\n \"name\": \"silahukrtest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"5c767562-af30-4185-91cd-faed26a679b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ad187c871ff54bada6f78fcf6d7fedcc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-20T05:41:02.083\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahukrtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahukrtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahukrtest-2021-12-20t05-38-08-665z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbug\",\r\n \"name\": \"clitestfixbug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d2f6c521-abf3-45be-9e0c-2f701c72724d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"950de3d531bb423eb0a586034a3e7206\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T07:01:23.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbug\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbuge2host\",\r\n \"name\": \"clitestfixbuge2host\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"11bfcbff-9d54-4421-80a8-edb25ddfa537\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"df3254fd7e564f9eb979d3b37287de2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T08:09:43.2\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbuge2host\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-plconfig\",\r\n \"name\": \"hdips-plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dd9771ba-b469-460f-be04-07d2a1663572\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c88c6222064a4ba1bcb5a20bf953c7fd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-26T07:24:59.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdips-plconfig\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373\",\r\n \"name\": \"hdi-ps-test373\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"a283d4a5-595f-404c-b30a-fc1f6e2847fd\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"51a0e2c9e1ea42a6975229149255a798\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T13:22:02.16\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test373-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test373.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3715.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.Storage/storageAccounts/storagepstest3715\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test373\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/hfeb1hdinsight\",\r\n \"name\": \"hfeb1hdinsight\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"950d0f79-a429-484b-a225-ca34753440f1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"94f864b7c7c44d5f8efd412fde466278\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-01T10:27:49.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"feb1hdinsighthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/feb1hdinsighthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"feb1hdinsight-2022-02-01t09-36-05-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/kafka1804rel1\",\r\n \"name\": \"kafka1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dcd03388-2dcd-42fd-a56f-57886e873566\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4cb83c10697345a1ba82bafe4632da68\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:06:43.373\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafka1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/kafka1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafka1804rel1-2021-11-18t02-05-19-981z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/somfeb2hd\",\r\n \"name\": \"somfeb2hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fd449ae-2e3e-44ae-9af7-46df5c762ba7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"68d40ad695da407cbdb0974af0281ef9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-02T05:12:03.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"somfeb2hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/somfeb2hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"somfeb2hd-2022-02-02t05-08-51-016z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel\",\r\n \"name\": \"spark1804rel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9ec1368d-09a4-4131-b9ea-76130bf8c368\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2110121746.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"cf27f21b68cc4944aa8fe9afed03c309\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T01:28:07.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804relhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804relhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel-2021-11-18t01-26-57-400z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel1\",\r\n \"name\": \"spark1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1e79959-5638-444c-9b94-0639020b656d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"4afc3d89289a47c4a909ec3375bdc1c5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:04:05.393\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel1-2021-11-18t02-03-00-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel3\",\r\n \"name\": \"spark1804rel3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d97e9edf-b1cc-4ee7-a12b-15a0ecca4ea4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"3a7c48030d6f41b7bbfca7ea61a87498\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T03:00:04.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepstacc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/adkorlepstacc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel3-2021-11-18t02-59-11-390z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/testmsgraph1\",\r\n \"name\": \"testmsgraph1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"120fb6db-e245-44df-a93e-9643bc7850c2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202040503.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"909d18d761d34d67b8549829e6529f45\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-08T09:13:46.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1offlineverify1102\",\r\n \"name\": \"x1offlineverify1102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"4ed0cd0f-43ad-4152-885b-6cf9da9a0635\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2110271403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"311edd2109ab4f3d96356d2147146f38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-02T12:25:05.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1offlineverihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1offlineverihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1offlineverify1102-2021-11-02t12-21-53-880z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.HDInsight/clusters/sijin-test\",\r\n \"name\": \"sijin-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"01328369-b1f4-47ae-a0ff-09aec89768f5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"53fe2a909e1c46d6a3a49920d16898b6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-07T18:39:50.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijintesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.Storage/storageAccounts/sijintesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-test-2022-02-07t18-38-45-444z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7891/providers/Microsoft.HDInsight/clusters/hdi-ps-test373?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzczP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4261da9c-051b-42cc-94c0-9b36ad105954" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/e29c1dc5-ebd2-4a79-8f6f-4b17e78fa2f7-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/e29c1dc5-ebd2-4a79-8f6f-4b17e78fa2f7-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "8ca287a1-c2e2-4653-b61f-ea171c00295d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8421bb16-d0c0-4293-91c9-ac05a503151b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134115Z:8421bb16-d0c0-4293-91c9-ac05a503151b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:41:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/e29c1dc5-ebd2-4a79-8f6f-4b17e78fa2f7-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy9lMjljMWRjNS1lYmQyLTRhNzktOGY2Zi00YjE3ZTc4ZmEyZjctMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4261da9c-051b-42cc-94c0-9b36ad105954" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a41577a1-a485-4294-baed-8d584db33ea5" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a2c01bb3-2ff5-4a18-8bd8-286585d7bc06" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134216Z:a2c01bb3-2ff5-4a18-8bd8-286585d7bc06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:42:16 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/e29c1dc5-ebd2-4a79-8f6f-4b17e78fa2f7-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2UyOWMxZGM1LWViZDItNGE3OS04ZjZmLTRiMTdlNzhmYTJmNy0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4261da9c-051b-42cc-94c0-9b36ad105954" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "68e59956-2c26-468c-80d9-76e72cdb6430" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8ff6da4c-d201-4274-b1a6-f6bb7596469a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134217Z:8ff6da4c-d201-4274-b1a6-f6bb7596469a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:42:16 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7891?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODkxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "eb203949-e2b5-442f-9011-7dfd555b9812" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "939f9ed5-5ae8-4762-a2a3-675825b78ec6" - ], - "x-ms-correlation-request-id": [ - "939f9ed5-5ae8-4762-a2a3-675825b78ec6" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134221Z:939f9ed5-5ae8-4762-a2a3-675825b78ec6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:42:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "0dc114ce-e911-485c-b6b3-51cbedb1c941" - ], - "x-ms-correlation-request-id": [ - "0dc114ce-e911-485c-b6b3-51cbedb1c941" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134236Z:0dc114ce-e911-485c-b6b3-51cbedb1c941" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:42:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "f4c8229b-c911-4ae3-a1b7-e3a88cf09c61" - ], - "x-ms-correlation-request-id": [ - "f4c8229b-c911-4ae3-a1b7-e3a88cf09c61" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134252Z:f4c8229b-c911-4ae3-a1b7-e3a88cf09c61" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:42:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "94d85f9a-bc8a-422b-8a12-7852a2dc872b" - ], - "x-ms-correlation-request-id": [ - "94d85f9a-bc8a-422b-8a12-7852a2dc872b" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134307Z:94d85f9a-bc8a-422b-8a12-7852a2dc872b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:43:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-request-id": [ - "8c9e2321-ff3f-4c48-8f7b-07106e547ae2" - ], - "x-ms-correlation-request-id": [ - "8c9e2321-ff3f-4c48-8f7b-07106e547ae2" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134322Z:8c9e2321-ff3f-4c48-8f7b-07106e547ae2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:43:22 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-request-id": [ - "04576cb7-7785-4750-b2b3-c4776c959499" - ], - "x-ms-correlation-request-id": [ - "04576cb7-7785-4750-b2b3-c4776c959499" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134338Z:04576cb7-7785-4750-b2b3-c4776c959499" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:43:37 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-request-id": [ - "0a5bcdc0-4cc8-4928-b440-612e57368c6d" - ], - "x-ms-correlation-request-id": [ - "0a5bcdc0-4cc8-4928-b440-612e57368c6d" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134353Z:0a5bcdc0-4cc8-4928-b440-612e57368c6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:43:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "a93708cf-3fa6-411c-929f-bdc0e8a96a7b" - ], - "x-ms-correlation-request-id": [ - "a93708cf-3fa6-411c-929f-bdc0e8a96a7b" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134408Z:a93708cf-3fa6-411c-929f-bdc0e8a96a7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:44:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-request-id": [ - "f16e5172-e1b1-4637-852a-e5d523b0631b" - ], - "x-ms-correlation-request-id": [ - "f16e5172-e1b1-4637-852a-e5d523b0631b" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134424Z:f16e5172-e1b1-4637-852a-e5d523b0631b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:44:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-request-id": [ - "b3080b01-832d-4a2a-8568-baa16dd8f81f" - ], - "x-ms-correlation-request-id": [ - "b3080b01-832d-4a2a-8568-baa16dd8f81f" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134439Z:b3080b01-832d-4a2a-8568-baa16dd8f81f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:44:39 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTEtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RFdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-request-id": [ - "8a59dde8-41b2-4e30-af00-972bf316062b" - ], - "x-ms-correlation-request-id": [ - "8a59dde8-41b2-4e30-af00-972bf316062b" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134439Z:8a59dde8-41b2-4e30-af00-972bf316062b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:44:39 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "Test-CreateClusterWithComputeIsolation": [ - "hdi-ps-test373", - "group-ps-test7891", - "storagepstest3715" - ] - }, - "Variables": { - "SubscriptionId": "964c10bb-8a6c-43bc-83d3-6b318c6c7305" - } -} \ No newline at end of file diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithCustomAmbariDatabase.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithCustomAmbariDatabase.json index d4e600de03ab..2db5e0393a79 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithCustomAmbariDatabase.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithCustomAmbariDatabase.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test9204?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test1170?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QxMTcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "75f0afb9-19ac-4fdb-8416-7f47ffafec81" + "593e88d8-3229-42fc-bf6b-114229241380" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "b136db77-d4f0-4844-bbbc-4741889c5a6d" + "d6ba73dd-b085-4e0c-baef-01158d28d78d" ], "x-ms-correlation-request-id": [ - "b136db77-d4f0-4844-bbbc-4741889c5a6d" + "d6ba73dd-b085-4e0c-baef-01158d28d78d" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103547Z:b136db77-d4f0-4844-bbbc-4741889c5a6d" + "KOREASOUTH:20230725T065102Z:d6ba73dd-b085-4e0c-baef-01158d28d78d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:35:46 GMT" + "Tue, 25 Jul 2023 06:51:02 GMT" ], "Content-Length": [ - "195" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204\",\r\n \"name\": \"group-ps-test9204\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1170\",\r\n \"name\": \"group-ps-test1170\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.Storage/storageAccounts/storagepstest3246?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMyNDY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1170/providers/Microsoft.Storage/storageAccounts/storagepstest4978?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QxMTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDQ5Nzg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3a8376d6-1d7f-482f-8047-45230f3f027d" + "62341012-ce8d-414b-b5b3-071479d534db" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "110" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/4bbfc617-fa94-4c89-b3c1-e337fc9fe2bf?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/3c87c694-7648-468c-bcee-2977b85ffc23?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "4bbfc617-fa94-4c89-b3c1-e337fc9fe2bf" + "3c87c694-7648-468c-bcee-2977b85ffc23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,1888 +114,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "fab91f5f-360d-4659-9316-45588437a7b5" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103554Z:fab91f5f-360d-4659-9316-45588437a7b5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:35:53 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/4bbfc617-fa94-4c89-b3c1-e337fc9fe2bf?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zLzRiYmZjNjE3LWZhOTQtNGM4OS1iM2MxLWUzMzdmYzlmZTJiZj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5c8c3106-528a-4fff-b9f5-ae0295bebed8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "7c8d06c2-1e43-4ea0-a0de-64bf0ab7ec97" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103612Z:7c8d06c2-1e43-4ea0-a0de-64bf0ab7ec97" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:36:11 GMT" - ], - "Content-Length": [ - "1408" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.Storage/storageAccounts/storagepstest3246\",\r\n \"name\": \"storagepstest3246\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-10-11T10:35:52.7813721Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-10-11T10:35:52.7813721Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-10-11T10:35:52.6876549Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3246.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3246.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3246.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest3246.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3246-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3246-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3246-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.Storage/storageAccounts/storagepstest3246/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMyNDYvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "737cb428-e647-4575-8c19-da38bc7d2f01" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7f655925-44cd-4aef-9d56-ad199ea2c7b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "d37a742b-46c7-463a-8b47-1601f9872083" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103612Z:d37a742b-46c7-463a-8b47-1601f9872083" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:36:12 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"HXr+ttsX0z/lNdO6HavN2bdOowv0UVB8rnkFoR3oe3Ra7PuWQSuVSqZ6ixZzTigHJo80LpAWNPhCR8Ngj4y+cQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"AN00pwWEpVSriijrnsyjOklHhkgA27T1OEJzQmY521t4t9UBvvtG19GsYoRKcktJWeBAa1isI+DBanSnoID/Yw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9iaWxsaW5nU3BlY3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d11f950a-29e0-4de2-a840-3081a0503496" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "74f9b867-9e1f-41fb-a3c1-66b1abde8ac7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103614Z:74f9b867-9e1f-41fb-a3c1-66b1abde8ac7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:36:14 GMT" - ], - "Content-Length": [ - "117423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A10\",\r\n \"A11\",\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"A8\",\r\n \"A9\",\r\n \"G1\",\r\n \"G2\",\r\n \"G3\",\r\n \"G4\",\r\n \"G5\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E16S_V3\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E32S_V3\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E4S_V3\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E8S_V3\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_G1\",\r\n \"STANDARD_G2\",\r\n \"STANDARD_G3\",\r\n \"STANDARD_G4\",\r\n \"STANDARD_G5\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\",\r\n \"STANDARD_NC24\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E16s_v3\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E32s_v3\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E4s_v3\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E8s_v3\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\",\r\n \"3.6\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A10\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A10 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A11 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A9 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16S_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E16s_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 274878,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32S_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E32s_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 549756,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E4S_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E4s_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 68720,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E8S_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E8s_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 137439,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G1(2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"STANDARD_G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"STANDARD_G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"STANDARD_G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"STANDARD_G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_NC24\",\r\n \"cores\": 24,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_NC24 (24 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1474560,\r\n \"webWorkerResourceDiskSizeInMb\": 1474560\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"South Central US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {},\r\n \"ambari-conf\": {\r\n \"database-server\": \"yoursqlserver.database.windows.net\",\r\n \"database-name\": \"customambaridb\",\r\n \"database-user-name\": \"yourusername\",\r\n \"database-user-password\": \"******\"\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3246.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test1914\",\r\n \"key\": \"HXr+ttsX0z/lNdO6HavN2bdOowv0UVB8rnkFoR3oe3Ra7PuWQSuVSqZ6ixZzTigHJo80LpAWNPhCR8Ngj4y+cQ==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.Storage/storageAccounts/storagepstest3246\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2434" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"7d91024a-8e4e-4d5a-a017-0f7db9f8892b\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "2d6dc7e7-2374-4e1e-b7af-1a1146c9611e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e4b2ea9a-e2ec-4c72-a441-d4f02a08ebd6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103623Z:e4b2ea9a-e2ec-4c72-a441-d4f02a08ebd6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:36:23 GMT" - ], - "Content-Length": [ - "1965" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914\",\r\n \"name\": \"hdi-ps-test1914\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"7d91024a-8e4e-4d5a-a017-0f7db9f8892b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"65049d14cca7413ca376f39d174584f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-11T10:36:22.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3246.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.Storage/storageAccounts/storagepstest3246\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test1914\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f23e0754-b278-4e11-acb9-8b65da5b9821" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "1a47b4c4-ffac-41fd-bdd5-493d0825b3d0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103654Z:1a47b4c4-ffac-41fd-bdd5-493d0825b3d0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:36:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "032d4caf-a377-4752-ba08-d1ca0eafbc6b" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "510ce7d0-63fe-40c3-b8dc-db4a24aa2c37" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103726Z:510ce7d0-63fe-40c3-b8dc-db4a24aa2c37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:37:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a5fb6bb6-54f3-444b-a0c8-63c80b24e220" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "21e605e8-29e7-4c24-b190-6a4948ebfe89" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103756Z:21e605e8-29e7-4c24-b190-6a4948ebfe89" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:37:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d55f59df-7093-4009-ba78-14eb81250387" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "703437e6-85fd-4a84-a2e3-f9988714b504" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103828Z:703437e6-85fd-4a84-a2e3-f9988714b504" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:38:27 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7428c40b-94a0-4319-a89b-d7746e3cd98b" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "28a5b85e-e5a6-4e2d-943f-4622320cf178" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103858Z:28a5b85e-e5a6-4e2d-943f-4622320cf178" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:38:58 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ae276714-ad3e-4129-9289-d5d93c3b2947" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "29bc1647-7ae1-49ea-b65b-ef28526a6d6e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103929Z:29bc1647-7ae1-49ea-b65b-ef28526a6d6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:39:28 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c22eb0c8-10d5-4697-b229-acbb5def1a01" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "cf347496-2f4f-440d-892c-de8e2d766665" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T103959Z:cf347496-2f4f-440d-892c-de8e2d766665" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:39:58 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4e42bfb5-f7f8-487c-bf88-e9d0f3551148" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "93796e9a-de5d-4312-bf65-4a71659ef97a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104030Z:93796e9a-de5d-4312-bf65-4a71659ef97a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:40:30 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2358a2c3-a0a5-4d0d-a68e-270635c4b966" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "88e1c5b4-55ff-4ae7-b79e-60e3a39987ae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104100Z:88e1c5b4-55ff-4ae7-b79e-60e3a39987ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:41:00 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d2512623-bb4a-47be-8177-5a4406b2e99c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "21fa5b58-7c77-4f42-b913-c86f2914fecc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104131Z:21fa5b58-7c77-4f42-b913-c86f2914fecc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:41:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "caf774db-ee88-4892-849b-917495f19487" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "2e6b4784-e279-40f3-88da-088f3e21cc93" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104202Z:2e6b4784-e279-40f3-88da-088f3e21cc93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:42:01 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3e67b549-92e3-4ef0-bc61-0d874b8f8cf4" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "1243885a-d7f1-4ab1-a974-6bc4131a7271" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104233Z:1243885a-d7f1-4ab1-a974-6bc4131a7271" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:42:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2abeda50-6e6a-4292-99ce-43d0f08db59a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "3bf7d023-8ec4-426f-bf5e-1ca8287ffcd5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104304Z:3bf7d023-8ec4-426f-bf5e-1ca8287ffcd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:43:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "231e6d88-06a2-45c4-a7cc-1a1fe73356cd" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "64cd01de-17d0-4dd3-bca2-592c45c82494" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104336Z:64cd01de-17d0-4dd3-bca2-592c45c82494" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:43:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b4be5bfb-02fe-4207-8995-6a125c2dc734" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "48623421-0529-4df7-ac1a-2f58f2a477e6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104407Z:48623421-0529-4df7-ac1a-2f58f2a477e6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:44:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aeb36ed5-9613-4491-b45c-7366fa4f1971" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "dc130cb1-3e0b-4380-9238-d3c7ffc006b2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104437Z:dc130cb1-3e0b-4380-9238-d3c7ffc006b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:44:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a3420a44-6a11-4872-bcc8-edb5f744fc3c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "101a4a59-4f25-4dbb-8156-bc1af781fd8b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104508Z:101a4a59-4f25-4dbb-8156-bc1af781fd8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:45:08 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "96c6cb03-e3d3-45d1-826d-c9aa9e94e6bc" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c043eee5-f0b4-4b3f-83c6-43cd95f7b620" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104539Z:c043eee5-f0b4-4b3f-83c6-43cd95f7b620" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:45:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e32135dc-e63c-4606-8103-65cf42d0e6c6" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "28059a47-a676-4b44-92fe-0cc2a28e9489" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104610Z:28059a47-a676-4b44-92fe-0cc2a28e9489" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:46:10 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c3ca4ba8-0128-4d59-9ad9-97bc0cdabca0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "6c572d87-7ca5-4147-b382-64606a491c57" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104641Z:6c572d87-7ca5-4147-b382-64606a491c57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:46:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b16da7b3-a268-4b0e-8e10-39f91c452b0a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "05d93e53-31c5-4679-a229-3ff37c38e33e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104711Z:05d93e53-31c5-4679-a229-3ff37c38e33e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:47:10 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxNC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "204456b9-7e59-41b8-8e44-485cadd2f53b" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f10cb2bc-9a34-43ca-abd5-597f48511c2f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104742Z:f10cb2bc-9a34-43ca-abd5-597f48511c2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:47:42 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4a4ccf0f-0561-4d95-bb84-f862767a34fa" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "034c462b-77b9-43cd-b815-e5e7748d0dc6" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "07b0df64-29e8-4391-b9c0-4fcba10d2bb7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104742Z:07b0df64-29e8-4391-b9c0-4fcba10d2bb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:47:42 GMT" - ], - "Content-Length": [ - "2183" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914\",\r\n \"name\": \"hdi-ps-test1914\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"7d91024a-8e4e-4d5a-a017-0f7db9f8892b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"65049d14cca7413ca376f39d174584f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-11T10:36:22.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1914-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1914.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3246.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.Storage/storageAccounts/storagepstest3246\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test1914\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d403ab6-af2a-4751-bafb-fd16c34a0750" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "9e3e0fe4-5a83-4916-9880-03ab08832204", - "c7180e16-e79c-44ed-863b-0317b71b07b3", - "061aceca-d1b3-4b0c-a8e4-8d2cf1f781ae", - "612e58b1-ff1d-483a-980a-a801c8689bcc", - "60c47472-37bb-439d-9927-b0b115bc9cde", - "734a61d8-28ac-4bcc-9102-bb16c77e9d79", - "829a776e-041c-4acc-843c-f8a999df819f", - "c05a6c7d-8de8-4743-8b6d-293c2d38fe91", - "5a3a8966-0f88-4cf7-919c-c3440de484f0", - "af8bf62e-a89b-43e6-8a8e-f4514212857b", - "6e198e96-a246-4911-9f30-99138f95526e", - "fedb54e0-4a52-4d26-aff9-efaa395c47f2", - "4116efe6-d898-4209-a421-89aeb8182177", - "5f8d33d2-e92f-4771-9f0a-112e84706935", - "3676530d-e266-4219-8848-193c2a57ce42", - "20776d91-3cbd-4289-b80e-a8b96816a394" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "bb9720c3-cb14-4fca-af39-f2f351c0e81d" - ], - "x-ms-correlation-request-id": [ - "bb9720c3-cb14-4fca-af39-f2f351c0e81d" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104749Z:bb9720c3-cb14-4fca-af39-f2f351c0e81d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:47:49 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "191747" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-dbencrypt/providers/Microsoft.HDInsight/clusters/xinli1testcluster\",\r\n \"name\": \"xinli1testcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"dfe339c5-2568-470d-88db-834f2df35a5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4afa62a83aaf4af3b6a25cd2f6eb6691\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T10:09:37.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1testcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1testcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://xinli1test1.vault.azure.net\",\r\n \"keyName\": \"mTestKey\",\r\n \"keyVersion\": \"93a84cbfd0f443f1aeb9057c018ca27e\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/xinli1-dbencrypt/providers/microsoft.managedidentity/userassignedidentities/xinli1-test-msi\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1testcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-dbencrypt/providers/Microsoft.Storage/storageAccounts/xinli1testcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1testcluster-2021-08-16t10-07-15-148z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/xinli1-dbencrypt/providers/microsoft.managedidentity/userassignedidentities/xinli1-test-msi\": {\r\n \"principalId\": \"0c522313-a93a-47c7-ae5d-b4f25f8b2f8a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytest501251\",\r\n \"name\": \"zzytest501251\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"91ffefef-6b9c-4dbd-a9fd-3d4d49c09913\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2107220401.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f2e8a2cf719f4b3b804ecdbf28bf69b4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-09-08T04:52:31.36\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToQueryBlueprintErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestimage5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestimage5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytest501251-2021-09-08t04-51-47-638z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dongwwarg/providers/Microsoft.HDInsight/clusters/dongwwaspark\",\r\n \"name\": \"dongwwaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"3622b4ea-a793-42f3-8d7a-9daccbd1c105\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"3687a5271ed74f0393d9c6158bcba66b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-30T12:49:13.623\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dongwwaspark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dongwwaspark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dongwwarg/providers/Microsoft.Storage/storageAccounts/dongwwasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dongwwaspark-2021-08-30t12-48-11-924z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1westeu1\",\r\n \"name\": \"xinli1westeu1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"855bd2f1-193e-4d48-bcad-e9534ad93486\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7b3004f168324682803f23bd753ab420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T05:31:21.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1westeu1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Storage/storageAccounts/xinli1westeu1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1westeu1-2021-08-16t05-29-21-677z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/admukund-gwproj/providers/Microsoft.HDInsight/clusters/admukund-gwproj\",\r\n \"name\": \"admukund-gwproj\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b9e0eac3-f57f-4690-a7f3-7182748a036a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4b521f9e7bd0433db55c6ee68c397b60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-07T04:10:53.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"admukund-gwproj-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"admukund-gwproj.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"admukundgwprohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/admukund-gwproj/providers/Microsoft.Storage/storageAccounts/admukundgwprohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"admukund-gwproj-2021-06-07t04-09-54-085z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.HDInsight/clusters/hdispark-pdc\",\r\n \"name\": \"hdispark-pdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"9b6aa9d8-ee92-49a0-a23f-09593775aad3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ea56e3048b4a4ca8afa944bdd1e8df35\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T16:51:37.87\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 144\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.9.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparkpdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Storage/storageAccounts/hdisparkpdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-pdc-2021-09-29t16-49-48-921z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-test-rg/providers/Microsoft.HDInsight/clusters/hdispark-test-eastus\",\r\n \"name\": \"hdispark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3dd798b1-e719-4424-b8ba-b764553c8611\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f213de901dfb4ee9be0a847a6f4bab33\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-30T14:59:02.757\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-test-rg/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-test-eastus-2021-09-30t14-56-49-003z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.HDInsight/clusters/wangyuecasehdi\",\r\n \"name\": \"wangyuecasehdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"9e255f08-1221-493d-bcc9-836a09d75eea\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1c6fc3d5691d4637a77d16efb2624144\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-13T11:20:38.853\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.18\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.18\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuecasehdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Storage/storageAccounts/wangyuecasehdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wangyuecasehdi-2021-09-13t11-17-35-020z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1mintlstest\",\r\n \"name\": \"xinli1mintlstest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6c10cf13-7619-4864-baaa-7c8dfda22836\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"5505a302ff6d4158a399b34acb4faf48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-18T07:00:33.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1mintlstest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1mintlstest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1mintlsthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Storage/storageAccounts/xinli1mintlsthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1mintlstest-2021-08-18t06-52-46-105z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.0\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.HDInsight/clusters/plpecmovetest\",\r\n \"name\": \"plpecmovetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"481cda28-846b-4268-b2dd-1bc04c01c063\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b824f8783ecd4c1a941636292f05ff6a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-13T19:52:15.567\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.18.2.14\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.18.2.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.18.2.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"saswamypltesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Storage/storageAccounts/saswamypltesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plpecmovetest-2021-08-13t19-50-52-836z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shangwei-pl-withoutudr\",\r\n \"name\": \"shangwei-pl-withoutudr\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c00da416-02db-47d2-8da3-0ab8dc087ff7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"96c43f0ed3484bbda4d533666b3e6dbd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-29T11:40:52.707\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiplwithdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweiplwithdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-pl-withoutudr-2021-07-29t11-39-02-370z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/testaddfwback\",\r\n \"name\": \"testaddfwback\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"d8e97d86-315b-4ee7-af2e-fed56113f101\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"a2cca30518dc48dbbb170ee7d8a15e36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-17T12:08:20.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testaddfwback-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testaddfwback.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testaddfwbackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testaddfwbackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testaddfwback-2021-08-17t12-06-12-937z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/test-remove-fw-rule\",\r\n \"name\": \"test-remove-fw-rule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"9f14dcc7-b83a-40c2-8adc-b0b34709caed\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"440c9ac1d9ce4a85a880a64531032a1d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-17T11:22:16.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalClusterValidationError\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. Internal Error when attempting to perform storage account validation for account testremovefwrhdistorage. Got exception error.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testremovefwrhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testremovefwrhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-remove-fw-rule-2021-08-17t11-19-57-945z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/testremovefwrulesretry\",\r\n \"name\": \"testremovefwrulesretry\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c32c63c0-7704-4278-8cb3-40161d643206\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"22f0a19bb1f34d0181df243c161b0bb5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-17T11:34:56.43\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalClusterValidationError\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. Internal Error when attempting to perform storage account validation for account testremovefwrretry. Got exception error.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testremovefwrretry.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testremovefwrretry\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testremovefwrulesretry-2021-08-17t11-33-06-747z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-brse-test283\",\r\n \"name\": \"yalu-brse-test283\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"7d317424-fd6a-4a32-9400-3a85f72b0837\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.2.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2012080609.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"52f94bc33ccf44dcb82dcdb5f433509f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-03-25T12:14:38.283\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test283-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test283.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testbrsoea.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-brse-test283\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-brse-test284\",\r\n \"name\": \"yalu-brse-test284\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"77b77f7d-891b-462d-a534-f6fa81a8b588\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbddd15a25b54cacb7bc8b0351537850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-05-12T07:18:21.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test284-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test284.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testbrsoea.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-brse-test284\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1-jioindiawest-43\",\r\n \"name\": \"xinli1-jioindiawest-43\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"92a5e688-d7b0-4833-a914-cc49492242ea\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"fb0895a1616f4fdda58d7789f0c90231\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-05-20T07:34:05.323\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'The DNS name 'xinli1-jioindiawest-43-ssh' is not available. Please use a different name.'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jinwtest2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.Storage/storageAccounts/xinli1jinwtest2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1-test-aaaaa-2021-05-12t07-27-11-547z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1-jioindiawest-77\",\r\n \"name\": \"xinli1-jioindiawest-77\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"1296c8e9-8878-4a00-bc4a-e5229f39d7a1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7d86fa1b31574ee38750c852a509118c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-05-20T07:51:41.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1-jioindiawest-77-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1-jioindiawest-77.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jinwtest2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.Storage/storageAccounts/xinli1jinwtest2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1-test-aaaaa-2021-05-12t07-27-11-547z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914\",\r\n \"name\": \"hdi-ps-test1914\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"7d91024a-8e4e-4d5a-a017-0f7db9f8892b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"65049d14cca7413ca376f39d174584f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-11T10:36:22.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1914-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1914.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3246.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.Storage/storageAccounts/storagepstest3246\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test1914\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.HDInsight/clusters/aztest2\",\r\n \"name\": \"aztest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"etag\": \"9f72fe21-47ce-4a80-8136-330414db3a58\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109030612.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"83a8f05ffce44615a058f4d97dfdaddb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-14T19:48:30.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"azstorageaccountz2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"az-testcontainer3\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.HDInsight/clusters/aztestzone1\",\r\n \"name\": \"aztestzone1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"fd966865-52df-4652-9670-abd746bccc69\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb6d842d68bb467c92cd99216379f0fb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-11T16:31:42.663\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"canaryazteststorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"az-testcontainer\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311719\",\r\n \"name\": \"wnagyuecentraltest08311719\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"9212cbc3-31c2-4b20-9fab-8816bd9331c1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a64489d888694f2e885387fbf0a5336b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T09:20:04.943\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311719\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311720\",\r\n \"name\": \"wnagyuecentraltest08311720\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"c56e3f7a-3a50-45a8-adc8-31283df0d27e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8d63b32cc685456ab6c8e8d97e32301f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T09:20:45.283\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311720\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311905\",\r\n \"name\": \"wnagyuecentraltest08311905\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"b60e48d3-8e2c-4473-9530-5c7d7a3ea32d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"73f589ff01e64954bd0c117409633cfd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T11:06:33.773\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311905\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311915\",\r\n \"name\": \"wnagyuecentraltest08311915\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"4a1fb518-3737-4b44-b7d2-37b49504528f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"fc949518a9cb4af0a16493dbcad23865\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T11:16:17.95\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311915\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-sece-test8301\",\r\n \"name\": \"yalu-sece-test8301\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"4d28639f-855d-4c0a-858e-cb4c1e59dad7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6045418bbcad4f2a91d725ab467cc591\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-30T04:28:37.44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'Standard_A2_v2' provided in the request is not allowed. Valid values are: EXTRALARGE,LARGE,MEDIUM,SMALL,STANDARD_D1_V2,STANDARD_D11_V2,STANDARD_D12_V2,STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_D2_V2,STANDARD_D3_V2,STANDARD_D4_V2,STANDARD_D5_V2'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusecetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-sece-test8301\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test826\",\r\n \"name\": \"yalu-usw3-test826\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"3eb11d9e-7256-42ff-b0b8-5c9ad230acb6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"326b098279c24e5f88f8762766f768b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-26T14:06:47.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test826-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test826.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusece826.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yalusece826\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test826-2021-08-26t13-52-52-669z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9204/providers/Microsoft.HDInsight/clusters/hdi-ps-test1914?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTkxND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d403ab6-af2a-4751-bafb-fd16c34a0750" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/48e9e4ae-a676-4d94-bc57-1675d27a2a88-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/48e9e4ae-a676-4d94-bc57-1675d27a2a88-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "35772302-ad8b-45f6-ad60-a1da0b80d028" - ], - "x-ms-hdi-served-by": [ - "southcentralus" + "1196" ], "x-ms-correlation-request-id": [ - "df5affb7-d759-4598-bc19-548b0c5e6f73" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "fe9da8f7-d1d4-4c69-ae44-ae3347a6efc4" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104752Z:df5affb7-d759-4598-bc19-548b0c5e6f73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "KOREASOUTH:20230725T065108Z:fe9da8f7-d1d4-4c69-ae44-ae3347a6efc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:47:52 GMT" + "Tue, 25 Jul 2023 06:51:07 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" ], "Expires": [ "-1" @@ -2008,21 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/48e9e4ae-a676-4d94-bc57-1675d27a2a88-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy80OGU5ZTRhZS1hNjc2LTRkOTQtYmM1Ny0xNjc1ZDI3YTJhODgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/3c87c694-7648-468c-bcee-2977b85ffc23?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8zYzg3YzY5NC03NjQ4LTQ2OGMtYmNlZS0yOTc3Yjg1ZmZjMjM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7d403ab6-af2a-4751-bafb-fd16c34a0750" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2030,62 +161,62 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "d83e8b84-f4c9-40f3-ac72-b6c7105f21ca" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/3c87c694-7648-468c-bcee-2977b85ffc23?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "x-ms-request-id": [ + "95b6260e-99ce-4a99-a625-5f407b4d8e96" ], - "x-ms-correlation-request-id": [ - "f965415d-69ab-4276-b5aa-10394b1d9945" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104853Z:f965415d-69ab-4276-b5aa-10394b1d9945" + "x-ms-correlation-request-id": [ + "2cf48743-73b5-48ba-a75d-5b9eb7f40974" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREASOUTH:20230725T065125Z:2cf48743-73b5-48ba-a75d-5b9eb7f40974" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:48:53 GMT" - ], - "Content-Length": [ - "22" + "Tue, 25 Jul 2023 06:51:25 GMT" ], "Content-Type": [ - "application/json; charset=utf-8" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/48e9e4ae-a676-4d94-bc57-1675d27a2a88-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzQ4ZTllNGFlLWE2NzYtNGQ5NC1iYzU3LTE2NzVkMjdhMmE4OC0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/3c87c694-7648-468c-bcee-2977b85ffc23?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8zYzg3YzY5NC03NjQ4LTQ2OGMtYmNlZS0yOTc3Yjg1ZmZjMjM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7d403ab6-af2a-4751-bafb-fd16c34a0750" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2094,58 +225,61 @@ "no-cache" ], "x-ms-request-id": [ - "eddb4c77-b6c5-40ba-a4b1-9ee75f4a360f" + "b7293609-0a1c-4c79-b5c3-e9fa15ed5e46" ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "47985ab4-0106-4fcb-8d4b-cbf7c24ed503" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11998" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104854Z:47985ab4-0106-4fcb-8d4b-cbf7c24ed503" + "x-ms-correlation-request-id": [ + "a3045056-a3a5-4f9c-8598-a98e28cf1cfe" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREASOUTH:20230725T065128Z:a3045056-a3a5-4f9c-8598-a98e28cf1cfe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:48:53 GMT" + "Tue, 25 Jul 2023 06:51:28 GMT" + ], + "Content-Length": [ + "1393" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1170/providers/Microsoft.Storage/storageAccounts/storagepstest4978\",\r\n \"name\": \"storagepstest4978\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-25T06:51:03.8888549Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-25T06:51:03.8888549Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-25T06:51:03.7638401Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest4978.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest4978.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest4978.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest4978.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest4978-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest4978-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest4978-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test9204?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q5MjA0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1170/providers/Microsoft.Storage/storageAccounts/storagepstest4978/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QxMTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDQ5NzgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a77407-629f-42b4-b90e-12695fd58ccb" + "2433e2be-a07d-49d3-af8b-ee1e97b897bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2153,227 +287,62 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], "x-ms-request-id": [ - "b6cf9c7f-c479-48ac-93ac-4a03edc38a8e" - ], - "x-ms-correlation-request-id": [ - "b6cf9c7f-c479-48ac-93ac-4a03edc38a8e" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104857Z:b6cf9c7f-c479-48ac-93ac-4a03edc38a8e" + "8fffabe2-770d-400b-b69b-8c6e0342cd2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:48:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ - "5821f7f0-61bc-42e6-986d-e72e72f9ca1f" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11998" ], "x-ms-correlation-request-id": [ - "5821f7f0-61bc-42e6-986d-e72e72f9ca1f" + "6bcb6ed9-42ab-4aae-bbc0-d9061bedd2f7" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104913Z:5821f7f0-61bc-42e6-986d-e72e72f9ca1f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "KOREASOUTH:20230725T065129Z:6bcb6ed9-42ab-4aae-bbc0-d9061bedd2f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:49:12 GMT" - ], - "Expires": [ - "-1" + "Tue, 25 Jul 2023 06:51:28 GMT" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "9d935d6e-28fe-433d-83ae-37bc65203083" - ], - "x-ms-correlation-request-id": [ - "9d935d6e-28fe-433d-83ae-37bc65203083" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104928Z:9d935d6e-28fe-433d-83ae-37bc65203083" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "288" ], - "Date": [ - "Mon, 11 Oct 2021 10:49:27 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test1170?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QxMTcwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "bcb4b5a9-a1b0-41ce-9b1d-d348a912f1c0" - ], - "x-ms-correlation-request-id": [ - "bcb4b5a9-a1b0-41ce-9b1d-d348a912f1c0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104944Z:bcb4b5a9-a1b0-41ce-9b1d-d348a912f1c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 10:49:43 GMT" + "x-ms-client-request-id": [ + "eb0b3f5f-72d1-448e-af40-d659c629179f" ], - "Expires": [ - "-1" + "Accept-Language": [ + "en-US" ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2382,22 +351,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "83e1322a-9cd3-4308-b213-92da6abeacf3" + "0b6fe4a0-0eef-4176-9b51-4bcda35c76ea" ], "x-ms-correlation-request-id": [ - "83e1322a-9cd3-4308-b213-92da6abeacf3" + "0b6fe4a0-0eef-4176-9b51-4bcda35c76ea" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T104959Z:83e1322a-9cd3-4308-b213-92da6abeacf3" + "KOREASOUTH:20230725T072952Z:0b6fe4a0-0eef-4176-9b51-4bcda35c76ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2406,7 +375,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:49:59 GMT" + "Tue, 25 Jul 2023 07:29:51 GMT" ], "Expires": [ "-1" @@ -2419,18 +388,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREV4TnpBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2439,22 +408,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "6bd4cd22-e950-4243-b538-649a0b713d1b" + "e059a86a-0d3e-4b54-a3c7-48432657794c" ], "x-ms-correlation-request-id": [ - "6bd4cd22-e950-4243-b538-649a0b713d1b" + "e059a86a-0d3e-4b54-a3c7-48432657794c" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T105015Z:6bd4cd22-e950-4243-b538-649a0b713d1b" + "KOREASOUTH:20230725T073007Z:e059a86a-0d3e-4b54-a3c7-48432657794c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2463,7 +432,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:50:14 GMT" + "Tue, 25 Jul 2023 07:30:07 GMT" ], "Expires": [ "-1" @@ -2476,18 +445,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREV4TnpBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2496,22 +465,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "1ceee9ac-957e-45b3-b495-794195fe7cd7" + "3fcf9c25-44fd-4de4-a346-a681c7b1e1d3" ], "x-ms-correlation-request-id": [ - "1ceee9ac-957e-45b3-b495-794195fe7cd7" + "3fcf9c25-44fd-4de4-a346-a681c7b1e1d3" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T105030Z:1ceee9ac-957e-45b3-b495-794195fe7cd7" + "KOREASOUTH:20230725T073022Z:3fcf9c25-44fd-4de4-a346-a681c7b1e1d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2520,7 +489,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:50:30 GMT" + "Tue, 25 Jul 2023 07:30:22 GMT" ], "Expires": [ "-1" @@ -2533,18 +502,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREV4TnpBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2553,22 +522,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "b1349f9b-d1f3-4a5c-8b49-394aa2bd41f8" + "520319e3-45cb-43f8-9598-330f5703ae47" ], "x-ms-correlation-request-id": [ - "b1349f9b-d1f3-4a5c-8b49-394aa2bd41f8" + "520319e3-45cb-43f8-9598-330f5703ae47" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T105045Z:b1349f9b-d1f3-4a5c-8b49-394aa2bd41f8" + "KOREASOUTH:20230725T073038Z:520319e3-45cb-43f8-9598-330f5703ae47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2577,7 +546,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:50:45 GMT" + "Tue, 25 Jul 2023 07:30:38 GMT" ], "Expires": [ "-1" @@ -2590,18 +559,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREV4TnpBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2610,22 +579,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "4d75555e-d3ae-45f6-a32d-75f2dea76c97" + "3d33829b-46e1-4222-a903-7b12d43d8826" ], "x-ms-correlation-request-id": [ - "4d75555e-d3ae-45f6-a32d-75f2dea76c97" + "3d33829b-46e1-4222-a903-7b12d43d8826" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T105101Z:4d75555e-d3ae-45f6-a32d-75f2dea76c97" + "KOREASOUTH:20230725T073053Z:3d33829b-46e1-4222-a903-7b12d43d8826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2634,7 +603,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:51:00 GMT" + "Tue, 25 Jul 2023 07:30:52 GMT" ], "Expires": [ "-1" @@ -2647,18 +616,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREV4TnpBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2667,16 +636,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "bd432273-3b2b-4d5d-8e19-eb07f8843f9f" + "ec17e01b-2673-47e9-91e6-f9b18403bff1" ], "x-ms-correlation-request-id": [ - "bd432273-3b2b-4d5d-8e19-eb07f8843f9f" + "ec17e01b-2673-47e9-91e6-f9b18403bff1" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T105116Z:bd432273-3b2b-4d5d-8e19-eb07f8843f9f" + "KOREASOUTH:20230725T073108Z:ec17e01b-2673-47e9-91e6-f9b18403bff1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2685,7 +654,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:51:16 GMT" + "Tue, 25 Jul 2023 07:31:08 GMT" ], "Expires": [ "-1" @@ -2698,18 +667,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkyMDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt5TURRdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDExNzAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREV4TnpBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2718,16 +687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-request-id": [ - "ab7e4c15-70b7-4521-bd82-f6f80565a103" + "442e87cf-7b5a-4ef9-a23c-70ff5ec1d07f" ], "x-ms-correlation-request-id": [ - "ab7e4c15-70b7-4521-bd82-f6f80565a103" + "442e87cf-7b5a-4ef9-a23c-70ff5ec1d07f" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T105116Z:ab7e4c15-70b7-4521-bd82-f6f80565a103" + "KOREASOUTH:20230725T073108Z:442e87cf-7b5a-4ef9-a23c-70ff5ec1d07f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2736,7 +705,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 10:51:16 GMT" + "Tue, 25 Jul 2023 07:31:08 GMT" ], "Expires": [ "-1" @@ -2751,9 +720,9 @@ ], "Names": { "Test-CreateClusterWithCustomAmbariDatabase": [ - "hdi-ps-test1914", - "group-ps-test9204", - "storagepstest3246" + "hdi-ps-test3867", + "group-ps-test1170", + "storagepstest4978" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionAtHost.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionAtHost.json index 994c1c708f67..ba3e08b04ff1 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionAtHost.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionAtHost.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8548?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test1954?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QxOTU0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c9af809f-9f83-46a1-923d-bc7e05cf694e" + "7dbb5205-3c83-45ec-bc12-a8d13677de74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "d96ca694-a72c-40fa-a9e3-6c93649cc420" + "13bc647c-c716-4c43-a581-dfac64ab1c24" ], "x-ms-correlation-request-id": [ - "d96ca694-a72c-40fa-a9e3-6c93649cc420" + "13bc647c-c716-4c43-a581-dfac64ab1c24" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134559Z:d96ca694-a72c-40fa-a9e3-6c93649cc420" + "KOREASOUTH:20230726T010745Z:13bc647c-c716-4c43-a581-dfac64ab1c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:45:58 GMT" + "Wed, 26 Jul 2023 01:07:45 GMT" ], "Content-Length": [ - "195" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548\",\r\n \"name\": \"group-ps-test8548\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1954\",\r\n \"name\": \"group-ps-test1954\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.Storage/storageAccounts/storagepstest3244?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMyNDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1954/providers/Microsoft.Storage/storageAccounts/storagepstest5983?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QxOTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDU5ODM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a8d48a39-f1a1-4c49-9e2f-425eacbfbba6" + "deb25a56-344f-4193-aa25-17cf176b0195" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "110" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/c1966fd0-5309-405b-9210-38d18fa93409?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a540dba5-c5e8-4293-955c-8e5e82e988d2?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "c1966fd0-5309-405b-9210-38d18fa93409" + "a540dba5-c5e8-4293-955c-8e5e82e988d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "14b2d966-cda3-43e9-9d5f-f208be2cbb64" + "4eaed9db-f927-401b-8bce-fe66ee321df4" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134608Z:14b2d966-cda3-43e9-9d5f-f208be2cbb64" + "KOREASOUTH:20230726T010751Z:4eaed9db-f927-401b-8bce-fe66ee321df4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:46:08 GMT" + "Wed, 26 Jul 2023 01:07:51 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,18 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/c1966fd0-5309-405b-9210-38d18fa93409?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zL2MxOTY2ZmQwLTUzMDktNDA1Yi05MjEwLTM4ZDE4ZmE5MzQwOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a540dba5-c5e8-4293-955c-8e5e82e988d2?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9hNTQwZGJhNS1jNWU4LTQyOTMtOTU1Yy04ZTVlODJlOTg4ZDI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -162,13 +162,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/c1966fd0-5309-405b-9210-38d18fa93409?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a540dba5-c5e8-4293-955c-8e5e82e988d2?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "3" ], "x-ms-request-id": [ - "e3f10d8b-e143-475f-94df-32d47d19970c" + "36c45573-401b-4e78-be60-282e8667b1b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,16 +180,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "85ac7979-2f59-404a-b18f-4113ca52a270" + "19c42864-1cce-4029-9cac-4b529fb720e4" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134626Z:85ac7979-2f59-404a-b18f-4113ca52a270" + "KOREASOUTH:20230726T010808Z:19c42864-1cce-4029-9cac-4b529fb720e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:46:26 GMT" + "Wed, 26 Jul 2023 01:08:07 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -205,18 +205,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/c1966fd0-5309-405b-9210-38d18fa93409?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zL2MxOTY2ZmQwLTUzMDktNDA1Yi05MjEwLTM4ZDE4ZmE5MzQwOT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a540dba5-c5e8-4293-955c-8e5e82e988d2?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9hNTQwZGJhNS1jNWU4LTQyOTMtOTU1Yy04ZTVlODJlOTg4ZDI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -224,8 +224,14 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a540dba5-c5e8-4293-955c-8e5e82e988d2?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" + ], "x-ms-request-id": [ - "f86674be-2335-47cb-b427-c078fc7ca9ae" + "958c7830-2f33-4444-bb5d-abafff6611b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,49 +243,43 @@ "11998" ], "x-ms-correlation-request-id": [ - "b527229b-ded8-4641-86c5-9042caa927c8" + "a3d7b5b5-776c-4abe-92c9-3cbdb13a92b6" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134629Z:b527229b-ded8-4641-86c5-9042caa927c8" + "KOREASOUTH:20230726T010811Z:a3d7b5b5-776c-4abe-92c9-3cbdb13a92b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:46:29 GMT" - ], - "Content-Length": [ - "1408" + "Wed, 26 Jul 2023 01:08:10 GMT" ], "Content-Type": [ - "application/json" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.Storage/storageAccounts/storagepstest3244\",\r\n \"name\": \"storagepstest3244\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-08T13:46:06.2887667Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-08T13:46:06.2887667Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-02-08T13:46:06.1794296Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3244.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3244.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3244.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest3244.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3244-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3244-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3244-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.Storage/storageAccounts/storagepstest3244/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMyNDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/a540dba5-c5e8-4293-955c-8e5e82e988d2?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9hNTQwZGJhNS1jNWU4LTQyOTMtOTU1Yy04ZTVlODJlOTg4ZDI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "176c903f-586e-4709-b8be-b058b46d0c77" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -288,7 +288,7 @@ "no-cache" ], "x-ms-request-id": [ - "f626f4c6-0933-4bf7-b65f-9aadc10b9388" + "9f162743-66fc-4731-8487-af0f201bb7ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -296,23 +296,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "3498374e-0651-4257-9c85-9ba2977dc0ae" + "c2521e76-3f9a-4f4b-abc4-f4ffd22c9da3" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134629Z:3498374e-0651-4257-9c85-9ba2977dc0ae" + "KOREASOUTH:20230726T010814Z:c2521e76-3f9a-4f4b-abc4-f4ffd22c9da3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:46:29 GMT" + "Wed, 26 Jul 2023 01:08:14 GMT" ], "Content-Length": [ - "288" + "1393" ], "Content-Type": [ "application/json" @@ -321,28 +321,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"jvvzi/o60ZCxBS9Z900KEzCaf85dV9WdYjs1+AL0oYf2Q2j3bXzTVlbwj5xu6Xn49QcRFKwRaCuhsoVdUf61nQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"ZWUjnHeRrbS3N1UhNGLE03bLK1FCVWbAPtaOU/iVenJ2pLojnBoz6XyYFDSoKOs16NHfpg1kE3FemiUPVFBStg==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1954/providers/Microsoft.Storage/storageAccounts/storagepstest5983\",\r\n \"name\": \"storagepstest5983\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-26T01:07:46.9816864Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-26T01:07:46.9816864Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-26T01:07:46.8410641Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5983.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5983.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5983.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest5983.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5983-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5983-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5983-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9iaWxsaW5nU3BlY3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1954/providers/Microsoft.Storage/storageAccounts/storagepstest5983/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QxOTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDU5ODMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" + "45194604-f3db-4b06-af62-a413f86bf5dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -351,70 +351,61 @@ "no-cache" ], "x-ms-request-id": [ - "3fef68d1-ebee-459c-acc2-ae72d74b9cf5" + "6af09de5-b10f-4936-b9c7-764d826bb2f6" ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5495187e-2be1-4259-a171-fdf69ba408c8" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134630Z:5495187e-2be1-4259-a171-fdf69ba408c8" + "x-ms-correlation-request-id": [ + "4bdc204f-264c-4e7b-89c1-de01ebbd8215" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREASOUTH:20230726T010815Z:4bdc204f-264c-4e7b-89c1-de01ebbd8215" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:46:30 GMT" + "Wed, 26 Jul 2023 01:08:14 GMT" ], "Content-Length": [ - "118417" + "288" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A10\",\r\n \"A11\",\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"A8\",\r\n \"A9\",\r\n \"G1\",\r\n \"G2\",\r\n \"G3\",\r\n \"G4\",\r\n \"G5\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E16S_V3\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E32S_V3\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E4S_V3\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E64S_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E8S_V3\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_G1\",\r\n \"STANDARD_G2\",\r\n \"STANDARD_G3\",\r\n \"STANDARD_G4\",\r\n \"STANDARD_G5\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\",\r\n \"STANDARD_NC24\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E16s_v3\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E32s_v3\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E4s_v3\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E64s_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E8s_v3\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\",\r\n \"3.6\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A10\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A10 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A11 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A9 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16S_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E16s_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 274878,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32S_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E32s_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 549756,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E4S_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E4s_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 68720,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64S_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64s_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E8S_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E8s_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 137439,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G1(2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"STANDARD_G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"STANDARD_G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"STANDARD_G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"STANDARD_G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_NC24\",\r\n \"cores\": 24,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_NC24 (24 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1474560,\r\n \"webWorkerResourceDiskSizeInMb\": 1474560\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"South Central US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_DS14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3244.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test9575\",\r\n \"key\": \"jvvzi/o60ZCxBS9Z900KEzCaf85dV9WdYjs1+AL0oYf2Q2j3bXzTVlbwj5xu6Xn49QcRFKwRaCuhsoVdUf61nQ==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.Storage/storageAccounts/storagepstest3244\"\r\n }\r\n ]\r\n },\r\n \"diskEncryptionProperties\": {\r\n \"encryptionAtHost\": true\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test1954?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QxOTU0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" + "964c1ba4-bbe5-4f0b-97fc-ccd799163211" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2232" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -422,32 +413,23 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "\"a71fff05-63f7-4136-ae5f-8281f070c257\"" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575?api-version=2021-06-01" + "Retry-After": [ + "15" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "94f07106-b8dd-431e-8581-35b3136435be" - ], - "x-ms-hdi-served-by": [ - "southcentralus" + "9ed1898f-a31c-4e1f-905e-7278d12c145c" ], "x-ms-correlation-request-id": [ - "fa319ee8-ad3f-4d03-b8cc-f6da0790cd2b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "9ed1898f-a31c-4e1f-905e-7278d12c145c" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134637Z:fa319ee8-ad3f-4d03-b8cc-f6da0790cd2b" + "JAPANEAST:20230726T012842Z:9ed1898f-a31c-4e1f-905e-7278d12c145c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,37 +438,31 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:46:37 GMT" - ], - "Content-Length": [ - "2120" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Wed, 26 Jul 2023 01:28:42 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575\",\r\n \"name\": \"hdi-ps-test9575\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"a71fff05-63f7-4136-ae5f-8281f070c257\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"724c99e6722447c78ff3b316d878bc90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-02-08T13:46:36.46\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": null,\r\n \"keyName\": null,\r\n \"keyVersion\": null,\r\n \"encryptionAlgorithm\": null,\r\n \"msiResourceId\": null,\r\n \"encryptionAtHost\": true\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3244.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.Storage/storageAccounts/storagepstest3244\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test9575\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -494,86 +470,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "1b852a43-fe07-431e-a382-35c34a094a17" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c4cdb445-7417-4697-a99d-8168997318c4" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134708Z:c4cdb445-7417-4697-a99d-8168997318c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:47:07 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "11999" ], "x-ms-request-id": [ - "015345ab-a321-4777-a5dd-d17800c48701" - ], - "x-ms-hdi-served-by": [ - "southcentralus" + "1edd0bdd-62ec-416e-b8e7-882234720343" ], "x-ms-correlation-request-id": [ - "4424bead-6d8d-41ec-b1c9-0e8e3f13749f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "1edd0bdd-62ec-416e-b8e7-882234720343" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134738Z:4424bead-6d8d-41ec-b1c9-0e8e3f13749f" + "JAPANEAST:20230726T012858Z:1edd0bdd-62ec-416e-b8e7-882234720343" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,37 +495,31 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:47:37 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Wed, 26 Jul 2023 01:28:57 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -620,23 +527,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "6ae56aa4-67a8-450d-a374-b13f4ba69c90" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "554cace5-0d54-49d6-9479-d7310e618cf8" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "e8013dbb-b19a-4aa7-9368-4f5984262606" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "x-ms-correlation-request-id": [ + "e8013dbb-b19a-4aa7-9368-4f5984262606" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134809Z:554cace5-0d54-49d6-9479-d7310e618cf8" + "JAPANEAST:20230726T012913Z:e8013dbb-b19a-4aa7-9368-4f5984262606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,37 +552,31 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:48:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Wed, 26 Jul 2023 01:29:12 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -683,23 +584,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "4084f491-0f82-4dce-8aea-8c8aab468bca" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "e9d74a7e-ad22-4c56-9b0c-7bf2b4b0c7bd" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "01cc8ca0-79e4-492b-aa98-e7c143e24bba" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "x-ms-correlation-request-id": [ + "01cc8ca0-79e4-492b-aa98-e7c143e24bba" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134839Z:e9d74a7e-ad22-4c56-9b0c-7bf2b4b0c7bd" + "JAPANEAST:20230726T012928Z:01cc8ca0-79e4-492b-aa98-e7c143e24bba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,37 +609,31 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:48:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Wed, 26 Jul 2023 01:29:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -746,23 +641,23 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "58ada2d5-85b3-4777-8182-d9e4b7191c92" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "Retry-After": [ + "15" ], - "x-ms-correlation-request-id": [ - "fd88e838-b805-44f2-9d63-d9603a5c9d0c" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "e5157c9d-bc3e-4289-af33-d68254692d9d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "x-ms-correlation-request-id": [ + "e5157c9d-bc3e-4289-af33-d68254692d9d" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134910Z:fd88e838-b805-44f2-9d63-d9603a5c9d0c" + "JAPANEAST:20230726T012943Z:e5157c9d-bc3e-4289-af33-d68254692d9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -771,37 +666,31 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:49:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Wed, 26 Jul 2023 01:29:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -809,23 +698,17 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "c4e29b21-10ae-4a75-a5e8-429c94d620c7" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "x-ms-request-id": [ + "18fa17fd-a50c-43b7-87b6-32d3c04b135c" ], "x-ms-correlation-request-id": [ - "71cf8a7b-039b-4abd-ad6a-80b8185e9e6d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "18fa17fd-a50c-43b7-87b6-32d3c04b135c" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T134940Z:71cf8a7b-039b-4abd-ad6a-80b8185e9e6d" + "JAPANEAST:20230726T012958Z:18fa17fd-a50c-43b7-87b6-32d3c04b135c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -834,37 +717,31 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:49:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Wed, 26 Jul 2023 01:29:58 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NTQtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TlRRdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -872,3813 +749,17 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "744264e9-1e88-4ae3-b13b-03b70735aef2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "d1b967b4-743d-40a4-ae8d-86dd0f9ad2a1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135011Z:d1b967b4-743d-40a4-ae8d-86dd0f9ad2a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:50:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bcd5e0cc-22c0-4bef-8ca0-c3e688807a93" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "ea0b6dec-0631-4b41-8a29-4c51a9989204" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135041Z:ea0b6dec-0631-4b41-8a29-4c51a9989204" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:50:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "944daafa-a609-4c04-a599-70b78dea9019" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a3933484-d5f2-4508-b2a2-a19ff274c32d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135113Z:a3933484-d5f2-4508-b2a2-a19ff274c32d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:51:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "70e0fcc0-dbe3-4343-8975-370d298e41cf" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f65d8c34-6601-4368-8546-7e2335bf05a0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135143Z:f65d8c34-6601-4368-8546-7e2335bf05a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:51:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2eeb5dc5-be52-4612-8ac9-fb0f9fcc32ac" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e6aeb777-7b5a-47f5-a963-e5523d81bf12" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135213Z:e6aeb777-7b5a-47f5-a963-e5523d81bf12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:52:13 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "014d67d9-7ad6-44ac-b1ef-fc429f763092" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5f1ef3e3-7f32-44e5-9064-7a79429e6bd9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135244Z:5f1ef3e3-7f32-44e5-9064-7a79429e6bd9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:52:44 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "393f1aba-21cc-47b1-b4d3-3e96a5ed1358" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "7e5b20af-22f6-4073-988c-aacf38836086" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135314Z:7e5b20af-22f6-4073-988c-aacf38836086" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:53:14 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "382133f0-2a76-4a1e-ba7a-2a1ec5ea7068" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "d2d4d3ea-8f0f-4967-96a2-f5a5bcbd6c56" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135345Z:d2d4d3ea-8f0f-4967-96a2-f5a5bcbd6c56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:53:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f91183fa-a606-4a0e-b28c-fcdf2e7d1530" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a6222de9-e5d8-4b1f-9da1-e89b60c0bdb4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135415Z:a6222de9-e5d8-4b1f-9da1-e89b60c0bdb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:54:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3fb1f419-7871-4fbc-9089-749b15ffadc9" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "fafcdf2c-ee42-4e09-8bb6-60561b143c3a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135446Z:fafcdf2c-ee42-4e09-8bb6-60561b143c3a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:54:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ae524c78-e30e-434e-a045-fa1bb878247c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "aed1cd93-9135-49fe-87ff-51315503a102" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135516Z:aed1cd93-9135-49fe-87ff-51315503a102" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:55:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ea915212-2221-4c4f-96dc-d9a96eb0210c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f7016954-ce37-4034-afa6-4f85673ea0e2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135547Z:f7016954-ce37-4034-afa6-4f85673ea0e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:55:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "efa1aad4-9078-43e0-8b0b-80c1988c2e70" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "4628fa1e-e370-4d8d-98cb-152b003941cf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135617Z:4628fa1e-e370-4d8d-98cb-152b003941cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:56:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "05bb4d65-458d-4de6-ae20-952ca8008802" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b99426f7-9a34-4661-a95d-8fbef64091ea" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135648Z:b99426f7-9a34-4661-a95d-8fbef64091ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:56:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "042cf202-6e42-4f8e-91f4-91bdf7530cc0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5b3bc512-182e-49b7-ab76-24aaff4c33bf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135719Z:5b3bc512-182e-49b7-ab76-24aaff4c33bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:57:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1afb4907-d0aa-4d78-ab75-7bbd373f8a23" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "ea8caca7-d776-4ae8-b24b-e067ccc4cb56" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135749Z:ea8caca7-d776-4ae8-b24b-e067ccc4cb56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:57:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "63d2760a-428c-4ab2-9f30-63c03fc9e6bf" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "fc04ee35-81aa-45b0-909c-e1812f26dbd7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135820Z:fc04ee35-81aa-45b0-909c-e1812f26dbd7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:58:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a7ac34a7-0b60-4173-a317-fb6b6e2088b1" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "ff26bab6-5b06-422f-91c3-bfecbc75c78b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135851Z:ff26bab6-5b06-422f-91c3-bfecbc75c78b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:58:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f941df75-dea4-4800-8a63-31708781ece6" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8473ba6c-dca1-4021-bbb9-f8f63a0590d1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135921Z:8473ba6c-dca1-4021-bbb9-f8f63a0590d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:59:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "48054b54-4237-41f6-8f4b-ed258bfe836d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5c81dccc-cc04-4e01-a6c1-ace2dc3416ee" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T135952Z:5c81dccc-cc04-4e01-a6c1-ace2dc3416ee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:59:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bef6f996-405a-4e04-ad40-c1f0606ca5a8" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "84fb8fb7-d8e7-4a18-bdbb-9fa8d6539645" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140022Z:84fb8fb7-d8e7-4a18-bdbb-9fa8d6539645" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:00:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "62704611-fa71-4097-8bfb-bcf470621668" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "50bf40f4-0b38-4cdb-b1a3-4f7008070719" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140053Z:50bf40f4-0b38-4cdb-b1a3-4f7008070719" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:00:52 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "54c2c765-a12d-4996-99dd-800fae5d52d8" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8e8950d5-a764-485c-bf69-8c83d83d6920" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140123Z:8e8950d5-a764-485c-bf69-8c83d83d6920" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:01:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1f12cd85-05ee-40b0-9cb4-f40b9e0ea390" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "0af36041-fc98-48a4-b9bb-218593ffd8ce" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140154Z:0af36041-fc98-48a4-b9bb-218593ffd8ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:01:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "723eb0aa-f883-4913-a5c5-45e655a113c6" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "79f0244a-33e5-4659-9850-6abb2602e1a3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140224Z:79f0244a-33e5-4659-9850-6abb2602e1a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:02:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "58b51bdb-491b-4aae-ac26-8cce4e8bcf24" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "aa9f27d9-1888-4ee4-8378-b3eff313ebfd" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140255Z:aa9f27d9-1888-4ee4-8378-b3eff313ebfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:02:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "be8dcb6a-ecbf-4eef-bb45-29cab6921fb7" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a1f043e7-e01b-4910-a4c1-fc91fd591d79" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140326Z:a1f043e7-e01b-4910-a4c1-fc91fd591d79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:03:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1803bdfa-9f95-4da6-b27c-1d273f1b61a2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f478fff9-669a-49d6-9824-b5dece9283a8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140357Z:f478fff9-669a-49d6-9824-b5dece9283a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:03:56 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4fe7e1d6-e86b-4ae2-bc59-16eb3e34fb0c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "25f1fe08-221b-42d3-8dbe-9cdf61302402" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140427Z:25f1fe08-221b-42d3-8dbe-9cdf61302402" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:04:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "406816d2-5a48-4d50-82aa-b4828d7a0397" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "dd6a246f-d15c-420f-b2cd-b7183be47d4c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140458Z:dd6a246f-d15c-420f-b2cd-b7183be47d4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:04:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ecaad8cb-8925-4bc2-b58d-c8965ec3a6fb" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "720be1d3-38b3-4305-a662-50b9f9f0b5f0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140528Z:720be1d3-38b3-4305-a662-50b9f9f0b5f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:05:28 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b14fb8bf-11d9-4f63-a0cf-0a5facab1c41" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "9cfac365-cd60-43ad-9032-4c947eee2acd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140559Z:9cfac365-cd60-43ad-9032-4c947eee2acd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:05:58 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8ad34a41-c3c2-4890-bfda-12c2f292241f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "000b10ac-f0c4-4ac2-9103-b552cd020c92" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140630Z:000b10ac-f0c4-4ac2-9103-b552cd020c92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:06:29 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "08205cb1-3ba4-461d-b903-c72d15d75406" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e69e184f-c06f-467a-9dac-173b9f3a9bc3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140700Z:e69e184f-c06f-467a-9dac-173b9f3a9bc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:06:59 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "97d9d76e-0acd-4e6d-8321-4be8635018c0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "eb2d8901-7c09-48f0-9780-7fb10b030559" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140731Z:eb2d8901-7c09-48f0-9780-7fb10b030559" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:07:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "69cdea59-71dc-4625-8a65-25e22f2d3945" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "4df49d94-005e-4f18-9a2f-c3484e3380a3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140801Z:4df49d94-005e-4f18-9a2f-c3484e3380a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:08:01 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f397629e-fc54-47b4-b7bc-780797d938f3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "53b038fa-a878-4b8b-96ea-3daa759f8021" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140832Z:53b038fa-a878-4b8b-96ea-3daa759f8021" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:08:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e75cdd88-d198-41c8-acaf-60120c3fe077" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "2d1f1f57-6a74-4f26-978d-788c6dcf72fe" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140903Z:2d1f1f57-6a74-4f26-978d-788c6dcf72fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:09:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d17f46b7-5058-4c4b-8afb-d487f956541a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "d6f58b9d-e898-4b20-86ba-239fc39f3819" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T140934Z:d6f58b9d-e898-4b20-86ba-239fc39f3819" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:09:34 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "be703ae9-6e70-47f5-ab47-a4f8580ccd10" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "4140e140-0775-4cc2-95af-f3796109c3c8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141004Z:4140e140-0775-4cc2-95af-f3796109c3c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:10:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4623249f-ef64-4788-a2d3-042c84444a9e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5e41dfd9-6d9d-4f34-95b6-d90a712a67be" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141035Z:5e41dfd9-6d9d-4f34-95b6-d90a712a67be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:10:34 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b65e4ae0-1e92-4115-b634-92d7928f8ac9" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "96810d81-578e-4d16-b33a-7708a9345844" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141149Z:96810d81-578e-4d16-b33a-7708a9345844" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:11:48 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "76dbf179-a2ed-4064-a71a-326650326846" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c5fe2619-9614-4395-a4e7-03553f856bc1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141219Z:c5fe2619-9614-4395-a4e7-03553f856bc1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:12:18 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b6f3546c-f60b-4bbd-9597-d03030e52766" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "6c79a54c-fd0d-4638-9fb3-9c7a6efa5c15" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141250Z:6c79a54c-fd0d-4638-9fb3-9c7a6efa5c15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:12:50 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c4375ff0-fc79-47a6-9c1e-6615cc88e4ad" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "eb2e85f5-f224-4f33-a4f6-b4612d801027" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141320Z:eb2e85f5-f224-4f33-a4f6-b4612d801027" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:13:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a76cf51b-203c-4d71-9771-3de59879a65c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8863b275-5c11-43dd-8a7b-f1fa9dfad98a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141351Z:8863b275-5c11-43dd-8a7b-f1fa9dfad98a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:13:50 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2247beda-1c8f-4ad1-baca-cb4826b15fb0" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "47feb5fb-43a3-4357-9e40-3775842cda65" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "ef4ae521-329c-43e5-ac06-c9c933504840" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141352Z:ef4ae521-329c-43e5-ac06-c9c933504840" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:13:51 GMT" - ], - "Content-Length": [ - "2338" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575\",\r\n \"name\": \"hdi-ps-test9575\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"a71fff05-63f7-4136-ae5f-8281f070c257\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"724c99e6722447c78ff3b316d878bc90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T13:46:36.46\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9575-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9575.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": null,\r\n \"keyName\": null,\r\n \"keyVersion\": null,\r\n \"encryptionAlgorithm\": null,\r\n \"msiResourceId\": null,\r\n \"encryptionAtHost\": true\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3244.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.Storage/storageAccounts/storagepstest3244\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test9575\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c3e8b528-a15f-43e9-9080-745f75798d38" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "7d41fef8-01da-4df2-a78b-ef55bbcc6540", - "8cf43979-0e60-40b1-af17-2fd6dc94b79e", - "fbb56aab-3f91-4d91-b73c-9c18b2a70be3", - "737fe4ce-7c53-481e-9943-15bcf0023de8", - "d9b48701-efc1-42fb-af66-113719b8ff0b", - "fdda5747-e69a-4508-9d24-808f9b89e151", - "f2ffb353-23b2-4435-b00c-5fc2ad2f5727", - "1cdeeb9d-3457-4cac-8462-52cbd0b04c76", - "b63e1ab0-bf81-4181-8ae6-5d0724fffb2e", - "f91b58d3-2488-495c-882c-1b36a681b40b", - "8def31e6-6d3b-405a-a07a-b07b173f2e5a", - "90ef72eb-9f0a-4f93-97ff-12cb03cc05a9", - "83917606-4a69-443d-98b4-6965ff8f80e0", - "0ebc1a1d-ee1c-4d5e-b62d-2e4b49492ad5" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-request-id": [ - "c2b8e83b-a48d-461a-b33f-9dc445006994" - ], - "x-ms-correlation-request-id": [ - "c2b8e83b-a48d-461a-b33f-9dc445006994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141400Z:c2b8e83b-a48d-461a-b33f-9dc445006994" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:13:59 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "260280" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/cluster-1\",\r\n \"name\": \"cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a431157f-6c5a-4fe3-895f-95c8a33fbf2d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"679fd62bb7c34ac3b3418613af779647\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:48:49.733\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cluster1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.Storage/storageAccounts/cluster1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cluster-1-2021-11-18t09-36-59-829z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/fwruletestnostorage\",\r\n \"name\": \"fwruletestnostorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"d6bad2da-8c82-43a4-8987-4004d2864b00\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"38eebfcb4f57454c8ad6c7ec2c7baa48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T04:12:41.03\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: HIVE_METASTORE, HIVE_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER, APP_TIMELINE_SERVER, HISTORYSERVER, LIVY2_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fwruletestnostorage-2021-11-18t04-10-53-063z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/natgwtestshangwei\",\r\n \"name\": \"natgwtestshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"14f96cb1-3274-430b-9b4a-968628247675\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"2b00504bfa6243d5b1e85499a412ea7d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-17T04:59:14.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.2.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"natgwtestshanhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/natgwtestshanhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"natgwtestshangwei-2021-11-17t04-56-40-633z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/noeventhubtestfwrule\",\r\n \"name\": \"noeventhubtestfwrule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9e737c8a-f3f6-4143-8642-01e2669da20a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e704fc8f6ff447df87f193ebf6fa778e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T06:23:52.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"noeventhubtestfwrule-2021-11-18t06-21-43-155z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/plobshangwei1104\",\r\n \"name\": \"plobshangwei1104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"10b8b4f2-1451-4857-96db-d6becd92f052\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e82e156040f04a2084462f47a97e790a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:06:31.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.24\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plobshangwei1104-2021-11-18t03-04-32-097z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/removeservicebus\",\r\n \"name\": \"removeservicebus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"40472f2c-e9cc-4c2a-baea-73f3c83ea6b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"9d24322384fe4bd487f0c530d6a93e0e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:25:54.27\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.40\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"removeservicebus-2021-11-18t09-24-34-018z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-re-hdi\",\r\n \"name\": \"shangwei-re-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6ae5b2-e52a-4218-bc6c-86116159476b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ac85f4d11a8f496f94ff739a8f71790c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-29T07:58:27.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweirehdihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweirehdihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-re-hdi-2021-10-29t07-56-05-875z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-script\",\r\n \"name\": \"shiyi-trial-hadoop-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"1ca32779-0cee-420f-a5ba-908b3185ab74\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c85a253c646c4aaab769bb0118eff80d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-28T08:20:39.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://shiyitrialhadhdistorage.blob.core.windows.net/scriptprivate/test1.sh. Exception message: The remote server returned an error: (404) Not Found..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhadhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhadhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-scri-2021-12-28t08-18-03-877z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-vnet\",\r\n \"name\": \"shiyi-trial-hadoop-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a59f77a7-dd4c-4c94-9959-6910e34f73e9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b4b6c088cc544abb8039c6f8af97e1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:06:25.67\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhdpvnetstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhdpvnetstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-vnet-2021-12-31t03-02-31-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/sn27-shiyi-trial-hadoop-scale\",\r\n \"name\": \"sn27-shiyi-trial-hadoop-scale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"bdf10645-3d33-4502-95f3-d69df6d56ee7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"67cbcdca754c4108936fa75ad6498266\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:34:44.39\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sn27shiyitriahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/sn27shiyitriahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sn27shiyi-trial-hadoop-2021-12-31t03-16-52-081z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/testfwnoule\",\r\n \"name\": \"testfwnoule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9f44e2cc-000b-46af-b38b-e0ef7182c0e7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb384cdc9f1b486b80711578a46abaf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T12:20:39.717\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: APP_TIMELINE_SERVER, HISTORYSERVER, HIVE_METASTORE, HIVE_SERVER, JUPYTER_MASTER, LIVY2_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.55\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testfwnoule-2021-11-18t12-18-19-302z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/wildcardfwruleshangwei\",\r\n \"name\": \"wildcardfwruleshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"22b98b3e-7606-4cfe-8893-3d129cff0cf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"629252fd20ad4a9ab233d8d6b8e103f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:17:24.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wildcardfwruleshangwei-2021-11-18t03-15-34-205z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1ipleak1015\",\r\n \"name\": \"x1ipleak1015\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6f98f45a-83c4-49c9-b1b2-2778db052f65\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"728ba7042d844ed4a77e07116acceadd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-15T02:13:18.147\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1ipleak1015hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1ipleak1015hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1ipleak1015-2021-10-15t02-10-55-571z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziweitrial160\",\r\n \"name\": \"ziweitrial160\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8c4eab1d-99ec-4613-ad11-3489b4d792cf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1ece0f96973f47ac90fc5dc4d15d9111\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-16T09:03:17.753\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitrial160hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitrial160hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweitrial160-2021-11-16t08-55-33-161z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziwei-vnet-pl-cluster\",\r\n \"name\": \"ziwei-vnet-pl-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8f0d2245-ed9f-4404-b8b7-579d52d44a3a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5da9295f9ab9445da64de0d2ad3232db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-12-28T06:45:14.37\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitestvnethdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitestvnethdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziwei-vnet-pl-cluster-2021-12-28t06-42-56-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimeout11152\",\r\n \"name\": \"x1sshtimeout11152\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"793ff34c-4c91-4097-800f-2dc232465e3e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1cdbc57ba4da4e9484582e8d9bf1a549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:51:38.26\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimeout1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimeout1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimeout11-2021-11-15t01-48-59-363z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.HDInsight/clusters/silahu1zonewesteurope1\",\r\n \"name\": \"silahu1zonewesteurope1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"1c136beb-cd76-47c8-b353-e6558cb4eb44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"38db6e1a7b9741eca9d35039be544888\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-21T02:28:39.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahustorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Storage/storageAccounts/silahustorageaccount1\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.HDInsight/clusters/silahu-crosssub-test2\",\r\n \"name\": \"silahu-crosssub-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"089e7bb4-7657-4305-9b0a-20c015e46cc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"642b4c83bb09425f90ff700285b7cfee\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-24T06:02:51.847\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"crosssubsc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.Storage/storageAccounts/crosssubsc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout1115\",\r\n \"name\": \"x1sshtimout1115\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"44ab8c70-4843-4eea-a002-ca7cd35b2eb1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab8de7f7ee9d4cc1b5def2ed3cde382a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T00:44:43.387\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout11-2021-11-15t00-41-36-598z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout11151\",\r\n \"name\": \"x1sshtimout11151\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"7b36a6f7-593f-40f6-99d1-30124df683b3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45d64e947e9a40ed9b88739372195f66\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:39:30.447\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout111-2021-11-15t01-38-23-654z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.HDInsight/clusters/cunfeng-poc-cluster\",\r\n \"name\": \"cunfeng-poc-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ee606cd7-9b59-41d6-a671-5334b8fdaf73\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"edda8b6eef5849a68c20e6268d069b3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T10:49:05.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cunfengpoccluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.Storage/storageAccounts/cunfengpoccluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cunfeng-poc-cluster-2022-02-08t10-46-13-585z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test\",\r\n \"name\": \"pl-silahu-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b3b8670c-6ffb-443d-9f8e-6a8aae83d4cc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3a4bfe669a4147008b4e19238acfb99b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-04T14:00:54.667\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuprivatelinkstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Storage/storageAccounts/silahuprivatelinkstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plsilahu-test-2021-11-04t13-56-21-932z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test/privateEndpointConnections/testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"name\": \"testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelinkconsumer/providers/Microsoft.Network/privateEndpoints/testgateway-privateendpoint\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"536936262\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-ob-nopl\",\r\n \"name\": \"shangwei-ob-nopl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d244f602-b354-47da-9503-409e24881d80\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"59a4b07b702a4b11b9a62df0a20176a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-03T08:43:52.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.16.10.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiobnophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweiobnophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-ob-nopl-2021-11-03t08-38-14-544z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x111081outbound\",\r\n \"name\": \"x111081outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4323c35d-e603-4185-a805-02c2eafa263a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6b914129c5b413cb5d1f9f2fd660773\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-08T03:53:49.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x111081outbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x111081outbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x111081outbound-2021-11-08t03-51-20-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-azsecpack\",\r\n \"name\": \"yalu-azsecpack\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"322625f0-c3da-4054-be75-9311ea323fe3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f849798233f44c3b773b4ab19ee94b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-01-17T12:15:41.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluazsecpackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluazsecpackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-azsecpack-2022-01-17t12-13-51-157z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahu-etest1\",\r\n \"name\": \"silahu-etest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"987f491e-27a6-4ac2-aa54-cb8275600c58\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bc0f1a8324a74614ba7973dcf9b9b2f5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-13T12:54:31.793\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahuetest1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahu-etest1-2021-12-13t12-53-00-904z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahukrtest\",\r\n \"name\": \"silahukrtest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"5c767562-af30-4185-91cd-faed26a679b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ad187c871ff54bada6f78fcf6d7fedcc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-20T05:41:02.083\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahukrtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahukrtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahukrtest-2021-12-20t05-38-08-665z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbug\",\r\n \"name\": \"clitestfixbug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d2f6c521-abf3-45be-9e0c-2f701c72724d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"950de3d531bb423eb0a586034a3e7206\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T07:01:23.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbug\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbuge2host\",\r\n \"name\": \"clitestfixbuge2host\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"11bfcbff-9d54-4421-80a8-edb25ddfa537\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"df3254fd7e564f9eb979d3b37287de2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T08:09:43.2\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbuge2host\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-plconfig\",\r\n \"name\": \"hdips-plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dd9771ba-b469-460f-be04-07d2a1663572\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c88c6222064a4ba1bcb5a20bf953c7fd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-26T07:24:59.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdips-plconfig\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575\",\r\n \"name\": \"hdi-ps-test9575\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"a71fff05-63f7-4136-ae5f-8281f070c257\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"724c99e6722447c78ff3b316d878bc90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T13:46:36.46\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9575-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9575.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": null,\r\n \"keyName\": null,\r\n \"keyVersion\": null,\r\n \"encryptionAlgorithm\": null,\r\n \"msiResourceId\": null,\r\n \"encryptionAtHost\": true\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3244.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.Storage/storageAccounts/storagepstest3244\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test9575\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/hfeb1hdinsight\",\r\n \"name\": \"hfeb1hdinsight\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"950d0f79-a429-484b-a225-ca34753440f1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"94f864b7c7c44d5f8efd412fde466278\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-01T10:27:49.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"feb1hdinsighthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/feb1hdinsighthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"feb1hdinsight-2022-02-01t09-36-05-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/kafka1804rel1\",\r\n \"name\": \"kafka1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dcd03388-2dcd-42fd-a56f-57886e873566\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4cb83c10697345a1ba82bafe4632da68\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:06:43.373\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafka1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/kafka1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafka1804rel1-2021-11-18t02-05-19-981z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/somfeb2hd\",\r\n \"name\": \"somfeb2hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fd449ae-2e3e-44ae-9af7-46df5c762ba7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"68d40ad695da407cbdb0974af0281ef9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-02T05:12:03.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"somfeb2hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/somfeb2hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"somfeb2hd-2022-02-02t05-08-51-016z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel\",\r\n \"name\": \"spark1804rel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9ec1368d-09a4-4131-b9ea-76130bf8c368\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2110121746.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"cf27f21b68cc4944aa8fe9afed03c309\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T01:28:07.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804relhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804relhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel-2021-11-18t01-26-57-400z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel1\",\r\n \"name\": \"spark1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1e79959-5638-444c-9b94-0639020b656d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"4afc3d89289a47c4a909ec3375bdc1c5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:04:05.393\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel1-2021-11-18t02-03-00-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel3\",\r\n \"name\": \"spark1804rel3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d97e9edf-b1cc-4ee7-a12b-15a0ecca4ea4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"3a7c48030d6f41b7bbfca7ea61a87498\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T03:00:04.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepstacc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/adkorlepstacc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel3-2021-11-18t02-59-11-390z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/testmsgraph1\",\r\n \"name\": \"testmsgraph1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"120fb6db-e245-44df-a93e-9643bc7850c2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202040503.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"909d18d761d34d67b8549829e6529f45\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-08T09:13:46.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1offlineverify1102\",\r\n \"name\": \"x1offlineverify1102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"4ed0cd0f-43ad-4152-885b-6cf9da9a0635\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2110271403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"311edd2109ab4f3d96356d2147146f38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-02T12:25:05.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1offlineverihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1offlineverihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1offlineverify1102-2021-11-02t12-21-53-880z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.HDInsight/clusters/sijin-test\",\r\n \"name\": \"sijin-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"01328369-b1f4-47ae-a0ff-09aec89768f5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"53fe2a909e1c46d6a3a49920d16898b6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-07T18:39:50.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijintesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.Storage/storageAccounts/sijintesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-test-2022-02-07t18-38-45-444z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8548/providers/Microsoft.HDInsight/clusters/hdi-ps-test9575?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c3e8b528-a15f-43e9-9080-745f75798d38" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/d467aad1-e6c5-400d-be34-6b86bc952174-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/d467aad1-e6c5-400d-be34-6b86bc952174-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "66f23213-8486-4015-820a-d62c66f64b86" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "65c9801d-72a6-4632-be66-b6123166b846" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141403Z:65c9801d-72a6-4632-be66-b6123166b846" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:14:03 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/d467aad1-e6c5-400d-be34-6b86bc952174-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy9kNDY3YWFkMS1lNmM1LTQwMGQtYmUzNC02Yjg2YmM5NTIxNzQtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c3e8b528-a15f-43e9-9080-745f75798d38" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "516e2981-f4b9-4ca0-b1d6-73f83d6471d3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "bd2db0ae-6517-44cb-a5f6-62f8f327a4a4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141504Z:bd2db0ae-6517-44cb-a5f6-62f8f327a4a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:15:04 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/d467aad1-e6c5-400d-be34-6b86bc952174-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzL2Q0NjdhYWQxLWU2YzUtNDAwZC1iZTM0LTZiODZiYzk1MjE3NC0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c3e8b528-a15f-43e9-9080-745f75798d38" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "149e6f18-8943-4186-ac6f-4754f18a4876" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "de17eb82-4272-49f4-a10f-10d412f36812" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141504Z:de17eb82-4272-49f4-a10f-10d412f36812" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:15:04 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8548?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NTQ4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ac526946-4bee-43e4-9e3d-791c2810dab9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "fcd13746-5458-44de-8049-f7277f3887ad" - ], - "x-ms-correlation-request-id": [ - "fcd13746-5458-44de-8049-f7277f3887ad" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141508Z:fcd13746-5458-44de-8049-f7277f3887ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:15:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "8999ddc9-169d-41a2-ae74-834ac83606a2" - ], - "x-ms-correlation-request-id": [ - "8999ddc9-169d-41a2-ae74-834ac83606a2" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141523Z:8999ddc9-169d-41a2-ae74-834ac83606a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:15:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "f6390378-135f-42c1-a119-c11ecd44f28e" - ], - "x-ms-correlation-request-id": [ - "f6390378-135f-42c1-a119-c11ecd44f28e" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141539Z:f6390378-135f-42c1-a119-c11ecd44f28e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:15:39 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "7166b21e-44f3-40b5-a45f-5a42cd1793c1" - ], - "x-ms-correlation-request-id": [ - "7166b21e-44f3-40b5-a45f-5a42cd1793c1" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141554Z:7166b21e-44f3-40b5-a45f-5a42cd1793c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:15:54 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "92a9c58e-df88-43c5-b495-6131eb3096ec" - ], - "x-ms-correlation-request-id": [ - "92a9c58e-df88-43c5-b495-6131eb3096ec" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141609Z:92a9c58e-df88-43c5-b495-6131eb3096ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:16:09 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "b6dc40ca-7ba3-43a9-bace-502b96025ed0" - ], - "x-ms-correlation-request-id": [ - "b6dc40ca-7ba3-43a9-bace-502b96025ed0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141625Z:b6dc40ca-7ba3-43a9-bace-502b96025ed0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:16:24 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-request-id": [ - "2d921585-b7d4-471b-903d-0813d8b67b30" - ], - "x-ms-correlation-request-id": [ - "2d921585-b7d4-471b-903d-0813d8b67b30" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141640Z:2d921585-b7d4-471b-903d-0813d8b67b30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:16:39 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "f87658df-0bfe-4944-9a0b-bb9750c5089c" - ], - "x-ms-correlation-request-id": [ - "f87658df-0bfe-4944-9a0b-bb9750c5089c" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141655Z:f87658df-0bfe-4944-9a0b-bb9750c5089c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:16:55 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "0a11e2b0-7d8e-4b3a-a12e-345a51f18168" - ], - "x-ms-correlation-request-id": [ - "0a11e2b0-7d8e-4b3a-a12e-345a51f18168" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141711Z:0a11e2b0-7d8e-4b3a-a12e-345a51f18168" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:17:10 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "3c9275ce-6e25-40c0-8e9f-bd8145fc6748" - ], - "x-ms-correlation-request-id": [ - "3c9275ce-6e25-40c0-8e9f-bd8145fc6748" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141726Z:3c9275ce-6e25-40c0-8e9f-bd8145fc6748" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 14:17:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg1NDgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcxTkRndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "52e84ea4-9cd9-40af-ac78-818dd4b52711" + "6c729468-7c34-4a80-8dec-54591bb268b9" ], "x-ms-correlation-request-id": [ - "52e84ea4-9cd9-40af-ac78-818dd4b52711" + "6c729468-7c34-4a80-8dec-54591bb268b9" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T141726Z:52e84ea4-9cd9-40af-ac78-818dd4b52711" + "JAPANEAST:20230726T012958Z:6c729468-7c34-4a80-8dec-54591bb268b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4687,7 +768,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 14:17:26 GMT" + "Wed, 26 Jul 2023 01:29:58 GMT" ], "Expires": [ "-1" @@ -4702,9 +783,9 @@ ], "Names": { "Test-CreateClusterWithEncryptionAtHost": [ - "hdi-ps-test9575", - "group-ps-test8548", - "storagepstest3244" + "hdi-ps-test1946", + "group-ps-test1954", + "storagepstest5983" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionInTransit.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionInTransit.json index eef8390e8b08..73352c134c44 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionInTransit.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithEncryptionInTransit.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8498?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test9410?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q5NDEwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f25f4bb3-6e83-422f-a8f2-8eb37a736a5b" + "7b11f95b-f210-4137-97ff-f5719267f631" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "0110fe15-f54e-4884-9d91-e6cc2019013d" + "a0263999-a7e4-4559-9fb3-1881d7abc28e" ], "x-ms-correlation-request-id": [ - "0110fe15-f54e-4884-9d91-e6cc2019013d" + "a0263999-a7e4-4559-9fb3-1881d7abc28e" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T082904Z:0110fe15-f54e-4884-9d91-e6cc2019013d" + "KOREACENTRAL:20230725T082726Z:a0263999-a7e4-4559-9fb3-1881d7abc28e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:29:03 GMT" + "Tue, 25 Jul 2023 08:27:25 GMT" ], "Content-Length": [ - "195" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498\",\r\n \"name\": \"group-ps-test8498\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9410\",\r\n \"name\": \"group-ps-test9410\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.Storage/storageAccounts/storagepstest8171?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDgxNzE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9410/providers/Microsoft.Storage/storageAccounts/storagepstest1926?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5NDEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDE5MjY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c6ccca81-d5e5-4dbc-aac4-7d46f35ae9c9" + "0bdea5b4-576c-4930-a2a6-9237b83357fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "110" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6646270e-4db3-470a-bbdf-37d7b7660017?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/f7e1e3be-76fd-4769-98cd-26ef58b463df?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "6646270e-4db3-470a-bbdf-37d7b7660017" + "f7e1e3be-76fd-4769-98cd-26ef58b463df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "80a1389c-0ef9-4458-8cf4-6847186acbb6" + "7df0002d-c313-4b4d-a271-499a5ad0d4fa" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T082913Z:80a1389c-0ef9-4458-8cf4-6847186acbb6" + "KOREACENTRAL:20230725T082732Z:7df0002d-c313-4b4d-a271-499a5ad0d4fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:29:13 GMT" + "Tue, 25 Jul 2023 08:27:32 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,2767 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/6646270e-4db3-470a-bbdf-37d7b7660017?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zLzY2NDYyNzBlLTRkYjMtNDcwYS1iYmRmLTM3ZDdiNzY2MDAxNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/f7e1e3be-76fd-4769-98cd-26ef58b463df?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9mN2UxZTNiZS03NmZkLTQ3NjktOThjZC0yNmVmNThiNDYzZGY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9d750ca5-9f8c-456b-83e1-ae081ad71a84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "2c665c40-54a6-436f-ba95-a3c4f3c26ed1" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T082930Z:2c665c40-54a6-436f-ba95-a3c4f3c26ed1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:29:30 GMT" - ], - "Content-Length": [ - "1408" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.Storage/storageAccounts/storagepstest8171\",\r\n \"name\": \"storagepstest8171\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-09T08:29:11.7902071Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-09T08:29:11.7902071Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-02-09T08:29:11.66519Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8171.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8171.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8171.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest8171.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8171-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8171-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8171-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.Storage/storageAccounts/storagepstest8171/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDgxNzEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "13a7a5e6-f09c-4652-815e-072399d3b38f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "65ad3e5e-bda8-412f-ae25-2dc0465b5a1e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "dccd63ef-3cb3-48a8-ab4f-92fd9ed232a6" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T082931Z:dccd63ef-3cb3-48a8-ab4f-92fd9ed232a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:29:30 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"kloF6N9owcKOw+w8FdVYaJXFB8DUdLmvHHI4Z1ZDzUVZadj9yb0zR6tEJ4lGVmBqs1FXjuZKg4y0yxd7VJ2UHQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"ww3jogWnRrIIqfuPPw7zFseCDIlYKBPll9HS2R0f59nEg9V4zQncfM9wn44gNZiBsJnbwypR5xxaRCu3dpNLbA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9iaWxsaW5nU3BlY3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4ba46ef0-8922-4472-bee1-214785cda1bc" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "fa3d34f2-0986-434c-8158-302497ed0ae0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T082945Z:fa3d34f2-0986-434c-8158-302497ed0ae0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:29:45 GMT" - ], - "Content-Length": [ - "118417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A10\",\r\n \"A11\",\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"A8\",\r\n \"A9\",\r\n \"G1\",\r\n \"G2\",\r\n \"G3\",\r\n \"G4\",\r\n \"G5\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E16S_V3\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E32S_V3\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E4S_V3\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E64S_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E8S_V3\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_G1\",\r\n \"STANDARD_G2\",\r\n \"STANDARD_G3\",\r\n \"STANDARD_G4\",\r\n \"STANDARD_G5\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\",\r\n \"STANDARD_NC24\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E16s_v3\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E32s_v3\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E4s_v3\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E64s_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E8s_v3\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\",\r\n \"3.6\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A10\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A10 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A11 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A9 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16S_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E16s_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 274878,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32S_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E32s_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 549756,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E4S_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E4s_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 68720,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64S_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64s_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E8S_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E8s_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 137439,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G1(2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"STANDARD_G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"STANDARD_G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"STANDARD_G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"STANDARD_G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_NC24\",\r\n \"cores\": 24,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_NC24 (24 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1474560,\r\n \"webWorkerResourceDiskSizeInMb\": 1474560\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"South Central US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest8171.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test8102\",\r\n \"key\": \"kloF6N9owcKOw+w8FdVYaJXFB8DUdLmvHHI4Z1ZDzUVZadj9yb0zR6tEJ4lGVmBqs1FXjuZKg4y0yxd7VJ2UHQ==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.Storage/storageAccounts/storagepstest8171\"\r\n }\r\n ]\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2243" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"8aadd412-5e41-4f6a-989b-d57f790963aa\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "93a6c42a-b83b-40b9-9e26-eae235ec0515" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "0dfef27c-f09d-43a5-b498-b3b506819e90" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083002Z:0dfef27c-f09d-43a5-b498-b3b506819e90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:30:02 GMT" - ], - "Content-Length": [ - "1963" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102\",\r\n \"name\": \"hdi-ps-test8102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"8aadd412-5e41-4f6a-989b-d57f790963aa\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"44d1a1bf577d40beb83d726367c347af\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-02-09T08:30:01.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest8171.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.Storage/storageAccounts/storagepstest8171\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test8102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f27f6e1a-ef2b-4d66-8cd6-5a5add3c6914" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "87825c35-03e0-4cb9-afc1-29aefb2ff4ae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083033Z:87825c35-03e0-4cb9-afc1-29aefb2ff4ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:30:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "130100e3-c565-41be-9344-b2ad4abf2d11" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f4420257-13e7-428d-9aec-8f6c39f04df7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083104Z:f4420257-13e7-428d-9aec-8f6c39f04df7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:31:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a719f1ce-b9f3-434f-bcee-65a764c6184e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "3247eb23-6255-4ee4-9b8e-87126fbc0542" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083134Z:3247eb23-6255-4ee4-9b8e-87126fbc0542" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:31:34 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8fa072a9-eb98-4c05-b5b8-73bb91b9c98a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "2401a437-cac1-4ce4-85a7-7e197be49431" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083205Z:2401a437-cac1-4ce4-85a7-7e197be49431" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:32:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bdeba3b6-8956-492e-88c5-ab8506949fc8" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "3fb9bb7f-547c-4501-be85-501d6624f002" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083235Z:3fb9bb7f-547c-4501-be85-501d6624f002" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:32:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7180c945-0dd4-4920-a032-fdd9157d4214" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "7b296b7d-d853-4c71-9e17-a9c23cf5e832" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083306Z:7b296b7d-d853-4c71-9e17-a9c23cf5e832" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:33:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cb1cd9e1-fb2a-49f7-a37d-743061c30ddc" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "950785ea-8a49-4dc3-8af9-0756052117a9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083336Z:950785ea-8a49-4dc3-8af9-0756052117a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:33:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b7dc0120-6eea-425c-a887-47c0a5cb9ffd" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b867c831-ade9-4227-b568-4e62c94eeafb" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083407Z:b867c831-ade9-4227-b568-4e62c94eeafb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:34:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f0746b3d-24d0-4773-9966-b50fc2ba2400" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f6d983ea-4786-4684-b814-9df8206c7da8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083438Z:f6d983ea-4786-4684-b814-9df8206c7da8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:34:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7be0c69c-175c-4c9f-a44e-90ec80cd27f5" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "3fce7dbc-b03b-4830-8d1d-8516b2e310d7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083509Z:3fce7dbc-b03b-4830-8d1d-8516b2e310d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:35:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e020285b-b77a-425b-93f3-0404a09fb850" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "4335061b-736c-40a5-9fce-27469f3fb210" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083540Z:4335061b-736c-40a5-9fce-27469f3fb210" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:35:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "02cc601e-3c1f-430d-86a4-f8c2a1167b43" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "88af7e88-9820-4730-bfc7-7a7cb6e080eb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083610Z:88af7e88-9820-4730-bfc7-7a7cb6e080eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:36:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b3aa1e43-f25c-4837-903e-bea6c95a8458" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "02e3db80-57b9-4d75-a486-122eb45fae24" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083641Z:02e3db80-57b9-4d75-a486-122eb45fae24" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:36:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "353aff79-5ac0-42a0-8a3c-84cfc9ee073e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a787f2df-66d6-4fb2-b096-35397d570450" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083711Z:a787f2df-66d6-4fb2-b096-35397d570450" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:37:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f3dca3a4-99c0-4e38-82e9-c9495c412fc3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "4f882d50-e6c7-4acb-ad5c-193d8dda0cce" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083742Z:4f882d50-e6c7-4acb-ad5c-193d8dda0cce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:37:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "db79d71f-b102-4aa7-af27-03ff97677c82" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f6e0caf4-e03d-470b-9b61-4a206b713c8e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083812Z:f6e0caf4-e03d-470b-9b61-4a206b713c8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:38:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c9fc6511-7710-4bfb-b59f-8cca4bc22649" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "12dcf79b-09b6-47ce-93b0-13f324d5ffa1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083843Z:12dcf79b-09b6-47ce-93b0-13f324d5ffa1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:38:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eaadd435-1350-4b78-98dc-a76f89e8632f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8eb47644-8b4b-48ca-91f8-f0caac476481" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083914Z:8eb47644-8b4b-48ca-91f8-f0caac476481" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:39:13 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b14628c8-f2c0-4b68-a2a1-728f9b8736b4" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e8caa242-e073-4a29-ac4b-271f5931afc2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T083945Z:e8caa242-e073-4a29-ac4b-271f5931afc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:39:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9f0d0599-b6af-427b-b55a-c1db5c10324c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b023760c-ae3b-4e4f-8f94-5082ceb81c04" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084015Z:b023760c-ae3b-4e4f-8f94-5082ceb81c04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:40:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "401a5be4-a722-4a1c-b873-128d0407c32e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "eadf0183-6842-4ed1-9ea5-8d9d2c02af59" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084046Z:eadf0183-6842-4ed1-9ea5-8d9d2c02af59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:40:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5e06a24d-db3d-42ba-a7c0-5c55b471c315" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f9adfd3c-5442-4e2b-994a-323e0904eef2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084116Z:f9adfd3c-5442-4e2b-994a-323e0904eef2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:41:16 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e3dab6fc-5827-498d-b996-6429efafb8f7" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5516833d-b075-49be-be8e-7d3c43eafe45" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084147Z:5516833d-b075-49be-be8e-7d3c43eafe45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:41:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6b4f9497-dffe-4837-baea-46b069de33f5" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "066af54d-8bf3-4fb5-bef4-ec9368d06fbd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084217Z:066af54d-8bf3-4fb5-bef4-ec9368d06fbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:42:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "68d48c09-9a32-4624-96e3-83839be9f7b3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b20eaddb-2651-48a8-930e-1415a8994c38" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084248Z:b20eaddb-2651-48a8-930e-1415a8994c38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:42:48 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ef5dcb56-ece2-41c9-b39a-ef0a976b847e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "7529db14-9c6d-4e0d-ae1b-846e3de7d369" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084318Z:7529db14-9c6d-4e0d-ae1b-846e3de7d369" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:43:18 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ff89bd3b-c77d-4e81-94b7-3d09997157a3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c3d21dff-5447-4c49-a006-5431628ab853" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084349Z:c3d21dff-5447-4c49-a006-5431628ab853" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:43:48 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7831adf4-4383-4437-92c8-00366b5d6c57" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5491b520-9016-4882-8743-2b2dbc2b7f7d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084419Z:5491b520-9016-4882-8743-2b2dbc2b7f7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:44:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e6e0a5a1-add1-444d-bdb8-323441e624ac" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "15589d65-48a7-49f7-87de-ccab1826153f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084451Z:15589d65-48a7-49f7-87de-ccab1826153f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:44:50 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "19fd9bbf-ce3e-45e9-ab6b-876957b40aab" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "52f1d09d-c59c-45cb-9cba-239b0cc9000a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084521Z:52f1d09d-c59c-45cb-9cba-239b0cc9000a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:45:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "47e2b684-0d66-4fb8-abdc-d03a13ce6836" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f2bd3563-88c2-40c0-9214-85295d6ca9d1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084552Z:f2bd3563-88c2-40c0-9214-85295d6ca9d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:45:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5250744d-bfe1-49e6-ab2d-deef7fedcacd" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "d63d5e27-b074-4677-bdda-5b6c3b6d9660" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084622Z:d63d5e27-b074-4677-bdda-5b6c3b6d9660" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:46:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3426f862-58d6-4fb1-a51f-c99d7feeec3b" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "30c60d0c-2bb1-4377-b182-597f5f71242b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084653Z:30c60d0c-2bb1-4377-b182-597f5f71242b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:46:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e4896526-b57e-4172-855b-8b5c0e98bec4" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "71f4c777-0f9b-4af6-8e92-06d7690aa0f5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084724Z:71f4c777-0f9b-4af6-8e92-06d7690aa0f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:47:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1bc7f339-1bdc-4ee5-941d-22f4eef5b620" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "45e10158-bd7f-480e-ad76-3a0b95bfe646" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084754Z:45e10158-bd7f-480e-ad76-3a0b95bfe646" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:47:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMi9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "35fdf541-f99c-4946-b348-98553df1cb23" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5edabcde-a2b5-4733-95ed-72c8b71e489c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084825Z:5edabcde-a2b5-4733-95ed-72c8b71e489c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:48:25 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6697496-6659-4c30-86b8-4973efe6138a" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "97c640ec-bd0c-410a-99f4-2862d3fd9f92" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "0b76eff1-2f4b-4519-8b98-d87c9ec12384" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084825Z:0b76eff1-2f4b-4519-8b98-d87c9ec12384" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:48:25 GMT" - ], - "Content-Length": [ - "2181" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102\",\r\n \"name\": \"hdi-ps-test8102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"8aadd412-5e41-4f6a-989b-d57f790963aa\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"44d1a1bf577d40beb83d726367c347af\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-09T08:30:01.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest8171.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.Storage/storageAccounts/storagepstest8171\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test8102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "367b072e-01ea-4c8e-bb70-a2ca67df620d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "d8075f04-5d2b-48e6-9c89-8fc49d108e71", - "832aa741-f632-4ea3-a39f-826f10bae83b", - "d0e50ae9-ca05-49d1-9d8c-13b6137dc00d", - "48c55a64-3368-40ab-8b24-bf05801af492", - "07d5ef2d-90ea-4ba9-990f-4f346c25961e", - "f820aa88-8c0b-4265-9a67-c2b7206208a2", - "10eb2f22-0244-4438-baff-d50bb1c3cf38", - "ff669bb7-0ebe-448d-8f5f-ed90df958947", - "476ab274-e431-4428-a119-fe811753230e", - "fe7f872e-fcba-4bb2-8454-c3a3a78adec9", - "a5158a03-4c0d-48da-8b46-b88ad664085d", - "e1cb17ce-be90-4078-a907-aa233d3a5e5e", - "e356133d-2eea-4c77-ab88-e06c947e6105", - "40678bf4-fa90-4ae9-8297-0c3db0b2898f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "eb203738-d90b-4b48-9cf1-365ad482f894" - ], - "x-ms-correlation-request-id": [ - "eb203738-d90b-4b48-9cf1-365ad482f894" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084839Z:eb203738-d90b-4b48-9cf1-365ad482f894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:48:39 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "259830" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/cluster-1\",\r\n \"name\": \"cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a431157f-6c5a-4fe3-895f-95c8a33fbf2d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"679fd62bb7c34ac3b3418613af779647\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:48:49.733\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cluster1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.Storage/storageAccounts/cluster1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cluster-1-2021-11-18t09-36-59-829z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/fwruletestnostorage\",\r\n \"name\": \"fwruletestnostorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"d6bad2da-8c82-43a4-8987-4004d2864b00\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"38eebfcb4f57454c8ad6c7ec2c7baa48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T04:12:41.03\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: HIVE_METASTORE, HIVE_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER, APP_TIMELINE_SERVER, HISTORYSERVER, LIVY2_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fwruletestnostorage-2021-11-18t04-10-53-063z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/natgwtestshangwei\",\r\n \"name\": \"natgwtestshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"14f96cb1-3274-430b-9b4a-968628247675\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"2b00504bfa6243d5b1e85499a412ea7d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-17T04:59:14.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.2.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"natgwtestshanhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/natgwtestshanhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"natgwtestshangwei-2021-11-17t04-56-40-633z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/noeventhubtestfwrule\",\r\n \"name\": \"noeventhubtestfwrule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9e737c8a-f3f6-4143-8642-01e2669da20a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e704fc8f6ff447df87f193ebf6fa778e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T06:23:52.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"noeventhubtestfwrule-2021-11-18t06-21-43-155z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/plobshangwei1104\",\r\n \"name\": \"plobshangwei1104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"10b8b4f2-1451-4857-96db-d6becd92f052\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e82e156040f04a2084462f47a97e790a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:06:31.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.24\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plobshangwei1104-2021-11-18t03-04-32-097z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/removeservicebus\",\r\n \"name\": \"removeservicebus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"40472f2c-e9cc-4c2a-baea-73f3c83ea6b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"9d24322384fe4bd487f0c530d6a93e0e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:25:54.27\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.40\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"removeservicebus-2021-11-18t09-24-34-018z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-re-hdi\",\r\n \"name\": \"shangwei-re-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6ae5b2-e52a-4218-bc6c-86116159476b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ac85f4d11a8f496f94ff739a8f71790c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-29T07:58:27.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweirehdihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweirehdihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-re-hdi-2021-10-29t07-56-05-875z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-script\",\r\n \"name\": \"shiyi-trial-hadoop-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"1ca32779-0cee-420f-a5ba-908b3185ab74\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c85a253c646c4aaab769bb0118eff80d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-28T08:20:39.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://shiyitrialhadhdistorage.blob.core.windows.net/scriptprivate/test1.sh. Exception message: The remote server returned an error: (404) Not Found..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhadhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhadhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-scri-2021-12-28t08-18-03-877z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-vnet\",\r\n \"name\": \"shiyi-trial-hadoop-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a59f77a7-dd4c-4c94-9959-6910e34f73e9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b4b6c088cc544abb8039c6f8af97e1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:06:25.67\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhdpvnetstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhdpvnetstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-vnet-2021-12-31t03-02-31-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/sn27-shiyi-trial-hadoop-scale\",\r\n \"name\": \"sn27-shiyi-trial-hadoop-scale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"bdf10645-3d33-4502-95f3-d69df6d56ee7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"67cbcdca754c4108936fa75ad6498266\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:34:44.39\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sn27shiyitriahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/sn27shiyitriahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sn27shiyi-trial-hadoop-2021-12-31t03-16-52-081z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/testfwnoule\",\r\n \"name\": \"testfwnoule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9f44e2cc-000b-46af-b38b-e0ef7182c0e7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb384cdc9f1b486b80711578a46abaf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T12:20:39.717\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: APP_TIMELINE_SERVER, HISTORYSERVER, HIVE_METASTORE, HIVE_SERVER, JUPYTER_MASTER, LIVY2_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.55\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testfwnoule-2021-11-18t12-18-19-302z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/wildcardfwruleshangwei\",\r\n \"name\": \"wildcardfwruleshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"22b98b3e-7606-4cfe-8893-3d129cff0cf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"629252fd20ad4a9ab233d8d6b8e103f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:17:24.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wildcardfwruleshangwei-2021-11-18t03-15-34-205z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1ipleak1015\",\r\n \"name\": \"x1ipleak1015\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6f98f45a-83c4-49c9-b1b2-2778db052f65\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"728ba7042d844ed4a77e07116acceadd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-15T02:13:18.147\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1ipleak1015hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1ipleak1015hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1ipleak1015-2021-10-15t02-10-55-571z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziweitrial160\",\r\n \"name\": \"ziweitrial160\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8c4eab1d-99ec-4613-ad11-3489b4d792cf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1ece0f96973f47ac90fc5dc4d15d9111\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-16T09:03:17.753\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitrial160hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitrial160hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweitrial160-2021-11-16t08-55-33-161z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziwei-vnet-pl-cluster\",\r\n \"name\": \"ziwei-vnet-pl-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8f0d2245-ed9f-4404-b8b7-579d52d44a3a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5da9295f9ab9445da64de0d2ad3232db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-12-28T06:45:14.37\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitestvnethdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitestvnethdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziwei-vnet-pl-cluster-2021-12-28t06-42-56-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimeout11152\",\r\n \"name\": \"x1sshtimeout11152\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"793ff34c-4c91-4097-800f-2dc232465e3e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1cdbc57ba4da4e9484582e8d9bf1a549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:51:38.26\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimeout1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimeout1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimeout11-2021-11-15t01-48-59-363z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.HDInsight/clusters/silahu1zonewesteurope1\",\r\n \"name\": \"silahu1zonewesteurope1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"1c136beb-cd76-47c8-b353-e6558cb4eb44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"38db6e1a7b9741eca9d35039be544888\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-21T02:28:39.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahustorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Storage/storageAccounts/silahustorageaccount1\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.HDInsight/clusters/silahu-crosssub-test2\",\r\n \"name\": \"silahu-crosssub-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"089e7bb4-7657-4305-9b0a-20c015e46cc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"642b4c83bb09425f90ff700285b7cfee\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-24T06:02:51.847\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"crosssubsc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.Storage/storageAccounts/crosssubsc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout1115\",\r\n \"name\": \"x1sshtimout1115\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"44ab8c70-4843-4eea-a002-ca7cd35b2eb1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab8de7f7ee9d4cc1b5def2ed3cde382a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T00:44:43.387\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout11-2021-11-15t00-41-36-598z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout11151\",\r\n \"name\": \"x1sshtimout11151\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"7b36a6f7-593f-40f6-99d1-30124df683b3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45d64e947e9a40ed9b88739372195f66\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:39:30.447\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout111-2021-11-15t01-38-23-654z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.HDInsight/clusters/cunfeng-poc-cluster\",\r\n \"name\": \"cunfeng-poc-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ee606cd7-9b59-41d6-a671-5334b8fdaf73\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"edda8b6eef5849a68c20e6268d069b3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T10:49:05.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cunfengpoccluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.Storage/storageAccounts/cunfengpoccluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cunfeng-poc-cluster-2022-02-08t10-46-13-585z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test\",\r\n \"name\": \"pl-silahu-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b3b8670c-6ffb-443d-9f8e-6a8aae83d4cc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3a4bfe669a4147008b4e19238acfb99b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-04T14:00:54.667\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuprivatelinkstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Storage/storageAccounts/silahuprivatelinkstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plsilahu-test-2021-11-04t13-56-21-932z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test/privateEndpointConnections/testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"name\": \"testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelinkconsumer/providers/Microsoft.Network/privateEndpoints/testgateway-privateendpoint\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"536936262\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-ob-nopl\",\r\n \"name\": \"shangwei-ob-nopl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d244f602-b354-47da-9503-409e24881d80\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"59a4b07b702a4b11b9a62df0a20176a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-03T08:43:52.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.16.10.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiobnophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweiobnophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-ob-nopl-2021-11-03t08-38-14-544z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-hdp-t1\",\r\n \"name\": \"shiyi-hdp-t1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b111f6d6-9b27-4e16-a43e-a3771ae0adc7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"86fafcd3dcfe4eefaf7fcdbbcac34cdb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"HdInsightConfiguration\",\r\n \"createdDate\": \"2022-02-09T08:38:32.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-hdp-t1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-hdp-t1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyihdpt1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyihdpt1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-hdp-t1-2022-02-09t08-36-22-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x111081outbound\",\r\n \"name\": \"x111081outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4323c35d-e603-4185-a805-02c2eafa263a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6b914129c5b413cb5d1f9f2fd660773\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-08T03:53:49.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x111081outbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x111081outbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x111081outbound-2021-11-08t03-51-20-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-azsecpack\",\r\n \"name\": \"yalu-azsecpack\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"322625f0-c3da-4054-be75-9311ea323fe3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f849798233f44c3b773b4ab19ee94b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-01-17T12:15:41.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluazsecpackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluazsecpackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-azsecpack-2022-01-17t12-13-51-157z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahu-etest1\",\r\n \"name\": \"silahu-etest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"987f491e-27a6-4ac2-aa54-cb8275600c58\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bc0f1a8324a74614ba7973dcf9b9b2f5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-13T12:54:31.793\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahuetest1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahu-etest1-2021-12-13t12-53-00-904z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahukrtest\",\r\n \"name\": \"silahukrtest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"5c767562-af30-4185-91cd-faed26a679b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ad187c871ff54bada6f78fcf6d7fedcc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-20T05:41:02.083\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahukrtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahukrtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahukrtest-2021-12-20t05-38-08-665z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbug\",\r\n \"name\": \"clitestfixbug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d2f6c521-abf3-45be-9e0c-2f701c72724d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"950de3d531bb423eb0a586034a3e7206\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T07:01:23.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbug\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbuge2host\",\r\n \"name\": \"clitestfixbuge2host\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"11bfcbff-9d54-4421-80a8-edb25ddfa537\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"df3254fd7e564f9eb979d3b37287de2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T08:09:43.2\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbuge2host\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-plconfig\",\r\n \"name\": \"hdips-plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dd9771ba-b469-460f-be04-07d2a1663572\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c88c6222064a4ba1bcb5a20bf953c7fd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-26T07:24:59.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdips-plconfig\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102\",\r\n \"name\": \"hdi-ps-test8102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"8aadd412-5e41-4f6a-989b-d57f790963aa\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"44d1a1bf577d40beb83d726367c347af\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-09T08:30:01.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest8171.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.Storage/storageAccounts/storagepstest8171\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test8102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/hfeb1hdinsight\",\r\n \"name\": \"hfeb1hdinsight\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"950d0f79-a429-484b-a225-ca34753440f1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"94f864b7c7c44d5f8efd412fde466278\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-01T10:27:49.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"feb1hdinsighthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/feb1hdinsighthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"feb1hdinsight-2022-02-01t09-36-05-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/kafka1804rel1\",\r\n \"name\": \"kafka1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dcd03388-2dcd-42fd-a56f-57886e873566\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4cb83c10697345a1ba82bafe4632da68\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:06:43.373\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafka1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/kafka1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafka1804rel1-2021-11-18t02-05-19-981z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/somfeb2hd\",\r\n \"name\": \"somfeb2hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fd449ae-2e3e-44ae-9af7-46df5c762ba7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"68d40ad695da407cbdb0974af0281ef9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-02T05:12:03.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"somfeb2hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/somfeb2hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"somfeb2hd-2022-02-02t05-08-51-016z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel\",\r\n \"name\": \"spark1804rel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9ec1368d-09a4-4131-b9ea-76130bf8c368\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2110121746.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"cf27f21b68cc4944aa8fe9afed03c309\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T01:28:07.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804relhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804relhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel-2021-11-18t01-26-57-400z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel1\",\r\n \"name\": \"spark1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1e79959-5638-444c-9b94-0639020b656d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"4afc3d89289a47c4a909ec3375bdc1c5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:04:05.393\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel1-2021-11-18t02-03-00-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel3\",\r\n \"name\": \"spark1804rel3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d97e9edf-b1cc-4ee7-a12b-15a0ecca4ea4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"3a7c48030d6f41b7bbfca7ea61a87498\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T03:00:04.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepstacc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/adkorlepstacc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel3-2021-11-18t02-59-11-390z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/testmsgraph2\",\r\n \"name\": \"testmsgraph2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"5e4e92fb-0f47-4be3-a353-9fc4d80cc23c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202040503.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"aae08ee21bdf4fc581709e9d15f996d3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-09T05:51:48.597\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1offlineverify1102\",\r\n \"name\": \"x1offlineverify1102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"4ed0cd0f-43ad-4152-885b-6cf9da9a0635\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2110271403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"311edd2109ab4f3d96356d2147146f38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-02T12:25:05.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1offlineverihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1offlineverihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1offlineverify1102-2021-11-02t12-21-53-880z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.HDInsight/clusters/sijin-test\",\r\n \"name\": \"sijin-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"01328369-b1f4-47ae-a0ff-09aec89768f5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"53fe2a909e1c46d6a3a49920d16898b6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-07T18:39:50.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijintesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.Storage/storageAccounts/sijintesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-test-2022-02-07t18-38-45-444z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8498/providers/Microsoft.HDInsight/clusters/hdi-ps-test8102?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODEwMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "367b072e-01ea-4c8e-bb70-a2ca67df620d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/5d2b6b71-1d80-417f-a6a8-b03c94bc4c5d-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/5d2b6b71-1d80-417f-a6a8-b03c94bc4c5d-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "6d0a2c17-90be-43dd-bf7b-2a5e35917a2a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "57f94d4a-e1b0-4a34-bba3-47be2fb24cd3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084841Z:57f94d4a-e1b0-4a34-bba3-47be2fb24cd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:48:41 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/5d2b6b71-1d80-417f-a6a8-b03c94bc4c5d-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy81ZDJiNmI3MS0xZDgwLTQxN2YtYTZhOC1iMDNjOTRiYzRjNWQtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "367b072e-01ea-4c8e-bb70-a2ca67df620d" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2910,62 +161,62 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "89a61bd3-569d-4bb3-a754-ed8785e69fac" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/f7e1e3be-76fd-4769-98cd-26ef58b463df?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "x-ms-request-id": [ + "fef0d5ea-c453-4baa-a141-1a322af2a7c3" ], - "x-ms-correlation-request-id": [ - "c11df969-51c7-4fd7-a581-703e8a518477" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11999" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084942Z:c11df969-51c7-4fd7-a581-703e8a518477" + "x-ms-correlation-request-id": [ + "3c6d1541-6124-43a3-8803-cbfad048a561" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230725T082750Z:3c6d1541-6124-43a3-8803-cbfad048a561" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:49:42 GMT" - ], - "Content-Length": [ - "22" + "Tue, 25 Jul 2023 08:27:49 GMT" ], "Content-Type": [ - "application/json; charset=utf-8" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/5d2b6b71-1d80-417f-a6a8-b03c94bc4c5d-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzVkMmI2YjcxLTFkODAtNDE3Zi1hNmE4LWIwM2M5NGJjNGM1ZC0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/f7e1e3be-76fd-4769-98cd-26ef58b463df?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9mN2UxZTNiZS03NmZkLTQ3NjktOThjZC0yNmVmNThiNDYzZGY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "367b072e-01ea-4c8e-bb70-a2ca67df620d" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2974,58 +225,61 @@ "no-cache" ], "x-ms-request-id": [ - "4eca9216-e79c-4949-8a18-dfa18c6cea7a" + "84e2e2aa-c029-44bf-bae4-4bcbda67f381" ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "89f72138-826e-45ec-9965-dcb2a055af3a" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11998" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084943Z:89f72138-826e-45ec-9965-dcb2a055af3a" + "x-ms-correlation-request-id": [ + "7edfc444-77d9-487c-ae05-c4f022234cc5" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230725T082753Z:7edfc444-77d9-487c-ae05-c4f022234cc5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:49:42 GMT" + "Tue, 25 Jul 2023 08:27:53 GMT" + ], + "Content-Length": [ + "1393" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9410/providers/Microsoft.Storage/storageAccounts/storagepstest1926\",\r\n \"name\": \"storagepstest1926\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-25T08:27:27.7973884Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-25T08:27:27.7973884Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-25T08:27:27.6567548Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest1926.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest1926.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest1926.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest1926.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest1926-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest1926-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest1926-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8498?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NDk4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9410/providers/Microsoft.Storage/storageAccounts/storagepstest1926/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5NDEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDE5MjYvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "f2abccda-8074-451f-b59c-9a4d05602ef0" + "109dc3d7-1fe5-42c3-ae0b-80011a889cfa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3033,227 +287,62 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], "x-ms-request-id": [ - "545e0b9c-db82-4d30-8719-c8700ca7f9e3" - ], - "x-ms-correlation-request-id": [ - "545e0b9c-db82-4d30-8719-c8700ca7f9e3" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T084948Z:545e0b9c-db82-4d30-8719-c8700ca7f9e3" + "42fd6ee3-ce3f-4a63-8d0a-0596c92a5afd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:49:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-request-id": [ - "21810836-01d1-4fa5-a0b9-fedbc383fdd8" - ], "x-ms-correlation-request-id": [ - "21810836-01d1-4fa5-a0b9-fedbc383fdd8" + "c47fa718-83f7-41ec-b454-b949d03db660" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085003Z:21810836-01d1-4fa5-a0b9-fedbc383fdd8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "KOREACENTRAL:20230725T082754Z:c47fa718-83f7-41ec-b454-b949d03db660" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:50:02 GMT" - ], - "Expires": [ - "-1" + "Tue, 25 Jul 2023 08:27:53 GMT" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "f7fb601f-1d38-43a8-b553-27ca586b775f" - ], - "x-ms-correlation-request-id": [ - "f7fb601f-1d38-43a8-b553-27ca586b775f" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085018Z:f7fb601f-1d38-43a8-b553-27ca586b775f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "288" ], - "Date": [ - "Wed, 09 Feb 2022 08:50:18 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test9410?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q5NDEwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "46ed76ea-0253-401e-8d9e-f602680c6592" - ], - "x-ms-correlation-request-id": [ - "46ed76ea-0253-401e-8d9e-f602680c6592" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085034Z:46ed76ea-0253-401e-8d9e-f602680c6592" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 09 Feb 2022 08:50:34 GMT" + "x-ms-client-request-id": [ + "99b04204-4f5b-4187-9b1d-2ab5e869279a" ], - "Expires": [ - "-1" + "Accept-Language": [ + "en-US" ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3262,22 +351,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "9628c4f6-a39a-479a-bc91-968490a2ced3" + "c168e1ba-6941-4061-9363-68c603983ea5" ], "x-ms-correlation-request-id": [ - "9628c4f6-a39a-479a-bc91-968490a2ced3" + "c168e1ba-6941-4061-9363-68c603983ea5" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085049Z:9628c4f6-a39a-479a-bc91-968490a2ced3" + "KOREACENTRAL:20230725T085257Z:c168e1ba-6941-4061-9363-68c603983ea5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3286,7 +375,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:50:49 GMT" + "Tue, 25 Jul 2023 08:52:57 GMT" ], "Expires": [ "-1" @@ -3299,18 +388,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGswTVRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3319,22 +408,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "62a10bf8-94de-4c27-9749-eaf2bc2b657e" + "5912a9e2-3ab3-41c5-99a0-4e4b204f0ecc" ], "x-ms-correlation-request-id": [ - "62a10bf8-94de-4c27-9749-eaf2bc2b657e" + "5912a9e2-3ab3-41c5-99a0-4e4b204f0ecc" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085104Z:62a10bf8-94de-4c27-9749-eaf2bc2b657e" + "KOREACENTRAL:20230725T085313Z:5912a9e2-3ab3-41c5-99a0-4e4b204f0ecc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3343,7 +432,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:51:04 GMT" + "Tue, 25 Jul 2023 08:53:12 GMT" ], "Expires": [ "-1" @@ -3356,18 +445,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGswTVRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3376,22 +465,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "09f1b096-dbac-4457-a556-c8598d0ee17d" + "f0ba4612-84dd-4811-8570-492af361dc30" ], "x-ms-correlation-request-id": [ - "09f1b096-dbac-4457-a556-c8598d0ee17d" + "f0ba4612-84dd-4811-8570-492af361dc30" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085120Z:09f1b096-dbac-4457-a556-c8598d0ee17d" + "KOREACENTRAL:20230725T085328Z:f0ba4612-84dd-4811-8570-492af361dc30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3400,7 +489,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:51:19 GMT" + "Tue, 25 Jul 2023 08:53:28 GMT" ], "Expires": [ "-1" @@ -3413,18 +502,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGswTVRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3433,22 +522,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "605c0726-fe4c-48db-b101-332cd900861f" + "7a526b36-973a-4734-a5b3-fd548b5d30c4" ], "x-ms-correlation-request-id": [ - "605c0726-fe4c-48db-b101-332cd900861f" + "7a526b36-973a-4734-a5b3-fd548b5d30c4" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085135Z:605c0726-fe4c-48db-b101-332cd900861f" + "KOREACENTRAL:20230725T085343Z:7a526b36-973a-4734-a5b3-fd548b5d30c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3457,7 +546,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:51:35 GMT" + "Tue, 25 Jul 2023 08:53:43 GMT" ], "Expires": [ "-1" @@ -3470,18 +559,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGswTVRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3490,22 +579,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "844dc06a-5cd5-4468-baba-b1121a79c8d1" + "85d698e9-237d-41fe-833e-38173d7df8db" ], "x-ms-correlation-request-id": [ - "844dc06a-5cd5-4468-baba-b1121a79c8d1" + "85d698e9-237d-41fe-833e-38173d7df8db" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085150Z:844dc06a-5cd5-4468-baba-b1121a79c8d1" + "KOREACENTRAL:20230725T085358Z:85d698e9-237d-41fe-833e-38173d7df8db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3514,7 +603,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:51:50 GMT" + "Tue, 25 Jul 2023 08:53:58 GMT" ], "Expires": [ "-1" @@ -3527,18 +616,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGswTVRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3547,16 +636,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "02a222c6-33c2-4b4d-af33-38306ba8066e" + "727e920c-2653-451c-9168-01d83181186c" ], "x-ms-correlation-request-id": [ - "02a222c6-33c2-4b4d-af33-38306ba8066e" + "727e920c-2653-451c-9168-01d83181186c" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085206Z:02a222c6-33c2-4b4d-af33-38306ba8066e" + "KOREACENTRAL:20230725T085414Z:727e920c-2653-451c-9168-01d83181186c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3565,7 +654,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:52:05 GMT" + "Tue, 25 Jul 2023 08:54:13 GMT" ], "Expires": [ "-1" @@ -3578,18 +667,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg0OTgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcwT1RndFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDk0MTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGswTVRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3598,16 +687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "b1ec308b-f1c6-4c5b-8aa8-c4a7eb86a540" + "38600c1e-a1f0-4a4b-bc21-f506bf59afa8" ], "x-ms-correlation-request-id": [ - "b1ec308b-f1c6-4c5b-8aa8-c4a7eb86a540" + "38600c1e-a1f0-4a4b-bc21-f506bf59afa8" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220209T085206Z:b1ec308b-f1c6-4c5b-8aa8-c4a7eb86a540" + "KOREACENTRAL:20230725T085414Z:38600c1e-a1f0-4a4b-bc21-f506bf59afa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3616,7 +705,7 @@ "nosniff" ], "Date": [ - "Wed, 09 Feb 2022 08:52:06 GMT" + "Tue, 25 Jul 2023 08:54:13 GMT" ], "Expires": [ "-1" @@ -3631,9 +720,9 @@ ], "Names": { "Test-CreateClusterWithEncryptionInTransit": [ - "hdi-ps-test8102", - "group-ps-test8498", - "storagepstest8171" + "hdi-ps-test8507", + "group-ps-test9410", + "storagepstest1926" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithKafkaRestProxy.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithKafkaRestProxy.json index a4e510f77480..d64ea6a988ad 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithKafkaRestProxy.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithKafkaRestProxy.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7897?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test1946?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QxOTQ2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c253cf13-b180-44d6-84c2-b7759c9f5f6a" + "16e20abe-8615-406f-bce0-9ef78941497f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "cc317e19-b900-4512-a060-a0c82a33960c" + "1c88c6ba-f3df-4995-aca1-48b70f24d821" ], "x-ms-correlation-request-id": [ - "cc317e19-b900-4512-a060-a0c82a33960c" + "1c88c6ba-f3df-4995-aca1-48b70f24d821" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130559Z:cc317e19-b900-4512-a060-a0c82a33960c" + "JAPANEAST:20230803T061954Z:1c88c6ba-f3df-4995-aca1-48b70f24d821" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:05:58 GMT" + "Thu, 03 Aug 2023 06:19:54 GMT" ], "Content-Length": [ - "195" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897\",\r\n \"name\": \"group-ps-test7897\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1946\",\r\n \"name\": \"group-ps-test1946\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDc5MjQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1946/providers/Microsoft.Storage/storageAccounts/storagepstest9435?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QxOTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDk0MzU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59cebd10-9ff0-4d51-87d5-a81def30952e" + "8e88c2f4-90f6-4abc-82f5-5880fff6c94b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "110" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/032b5a9f-8491-4506-9767-dc53dd7d8b97?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/1884b776-aea8-4bbe-85e6-36d76f84db59?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "032b5a9f-8491-4506-9767-dc53dd7d8b97" + "1884b776-aea8-4bbe-85e6-36d76f84db59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "7188f737-7864-4a59-893e-b73ab2b8cbcf" + "5ef76849-f2ec-4e2b-ab29-5c370124ba1f" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130607Z:7188f737-7864-4a59-893e-b73ab2b8cbcf" + "JAPANEAST:20230803T062000Z:5ef76849-f2ec-4e2b-ab29-5c370124ba1f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:06:06 GMT" + "Thu, 03 Aug 2023 06:19:59 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,1869 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/032b5a9f-8491-4506-9767-dc53dd7d8b97?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zLzAzMmI1YTlmLTg0OTEtNDUwNi05NzY3LWRjNTNkZDdkOGI5Nz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/1884b776-aea8-4bbe-85e6-36d76f84db59?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8xODg0Yjc3Ni1hZWE4LTRiYmUtODVlNi0zNmQ3NmY4NGRiNTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5fdc18b2-642c-4c4b-8a6b-5e581fe84ae3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "357cccab-524e-42a9-97e8-4f3146a70db7" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130624Z:357cccab-524e-42a9-97e8-4f3146a70db7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:06:24 GMT" - ], - "Content-Length": [ - "1408" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924\",\r\n \"name\": \"storagepstest7924\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-08T13:06:05.8135354Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-08T13:06:05.8135354Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-02-08T13:06:05.7041217Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7924.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7924.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7924.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest7924.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7924-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7924-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7924-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDc5MjQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "51622211-e557-4556-9666-859471e8dfb2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fadd1c2e-3f2c-42b5-90ae-557d7e6d7de1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "d22c649f-2e54-444a-9ab1-5d6d067d9867" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130624Z:d22c649f-2e54-444a-9ab1-5d6d067d9867" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:06:24 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"uOsjO2d5KS3h6y06JAZrWF5NGOzhlTuS1kaiDeJC9n362lleZOoDhP5BJ1/wIy/Gi1v0ylCGpeej8HCfspx3FQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"1pFH1Ms9Ml4arq0vUJi8gKgm7QLkmETMS1GyYERDa69DxAIo3pnRNYVS3tXa0ygN9VyPW9YiwwtmqWVaLN0mgg==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9iaWxsaW5nU3BlY3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5d7a0272-9fd0-4cad-aaeb-b5f8d6e9b924" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "148421e0-8a5b-41b2-ab01-23a7851c0093" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130637Z:148421e0-8a5b-41b2-ab01-23a7851c0093" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:06:37 GMT" - ], - "Content-Length": [ - "118417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A10\",\r\n \"A11\",\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"A8\",\r\n \"A9\",\r\n \"G1\",\r\n \"G2\",\r\n \"G3\",\r\n \"G4\",\r\n \"G5\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E16S_V3\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E32S_V3\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E4S_V3\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E64S_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E8S_V3\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_G1\",\r\n \"STANDARD_G2\",\r\n \"STANDARD_G3\",\r\n \"STANDARD_G4\",\r\n \"STANDARD_G5\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\",\r\n \"STANDARD_NC24\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E16s_v3\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E32s_v3\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E4s_v3\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E64s_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E8s_v3\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\",\r\n \"3.6\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A10\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A10 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A11 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A9 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16S_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E16s_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 274878,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32S_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E32s_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 549756,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E4S_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E4s_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 68720,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64S_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64s_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E8S_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E8s_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 137439,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G1(2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"STANDARD_G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"STANDARD_G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"STANDARD_G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"STANDARD_G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_NC24\",\r\n \"cores\": 24,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_NC24 (24 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1474560,\r\n \"webWorkerResourceDiskSizeInMb\": 1474560\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"South Central US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\r\n }\r\n },\r\n \"kafkaRestProperties\": {\r\n \"clientGroupInfo\": {\r\n \"groupName\": \"FakeClientGroup\",\r\n \"groupId\": \"00000000-0000-0000-0000-000000000000\"\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_E4_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E4_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A4_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"kafkamanagementnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7924.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test3554\",\r\n \"key\": \"uOsjO2d5KS3h6y06JAZrWF5NGOzhlTuS1kaiDeJC9n362lleZOoDhP5BJ1/wIy/Gi1v0ylCGpeej8HCfspx3FQ==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2803" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"ce25c767-f1ca-4b88-9f56-bae0e255d0a1\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "498498d4-126f-40d8-bc9f-933f1586fa85" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c352ee88-a0a2-49c1-8e89-aadb04f6b093" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130648Z:c352ee88-a0a2-49c1-8e89-aadb04f6b093" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:06:48 GMT" - ], - "Content-Length": [ - "2402" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554\",\r\n \"name\": \"hdi-ps-test3554\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"ce25c767-f1ca-4b88-9f56-bae0e255d0a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.0\"\r\n }\r\n },\r\n \"clusterId\": \"d79b85d135a44d78b12f381878ac7712\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"kafkamanagementnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-02-08T13:06:47.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"kafkaRestProperties\": {\r\n \"clientGroupInfo\": {\r\n \"groupName\": \"FakeClientGroup\",\r\n \"groupId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"configurationOverride\": null\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7924.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3554\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a78192b3-2298-4387-9923-42f06404a836" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "db58f299-aadd-43aa-a84c-acd0cd472fb3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130719Z:db58f299-aadd-43aa-a84c-acd0cd472fb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:07:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0d4dd6c5-3939-4098-8975-cf6240500e86" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "43df2de4-ff2a-4487-aa23-6388e48874f1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130750Z:43df2de4-ff2a-4487-aa23-6388e48874f1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:07:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6b2103d2-5af1-46c3-927d-1d5208312c1a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e5b70b18-225f-43bd-8951-1e0b4e3da8fa" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130823Z:e5b70b18-225f-43bd-8951-1e0b4e3da8fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:08:22 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "46f35915-10c7-4493-972d-6c6db8540817" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "3b962849-719e-4263-be16-5fc76befc777" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130853Z:3b962849-719e-4263-be16-5fc76befc777" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:08:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "137d474c-4418-4ec4-9cbd-26b0472f0702" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e4834339-b466-456d-ba87-7631dd474c99" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130924Z:e4834339-b466-456d-ba87-7631dd474c99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:09:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8b13a962-b04f-427d-bddc-3966715ab3a2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "28a2503e-f937-43a8-b195-7a24fe30a1bb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T130955Z:28a2503e-f937-43a8-b195-7a24fe30a1bb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:09:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "48388263-025e-4a59-85d0-5fdf29336e13" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "cb3e2fdf-0041-437c-9921-968f97d15fe4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131026Z:cb3e2fdf-0041-437c-9921-968f97d15fe4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:10:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a195fa99-abd3-4655-8352-06afcebe6abc" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c4df301a-12fc-4f47-8ec2-b856ff3a0062" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131056Z:c4df301a-12fc-4f47-8ec2-b856ff3a0062" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:10:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0d97f0c6-44db-4d23-aa09-0d00e762649c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "9cca6032-7d8f-48ee-bf6e-d3cdac41ffc5" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131127Z:9cca6032-7d8f-48ee-bf6e-d3cdac41ffc5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:11:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "383cdb6f-f247-4350-b7a0-e5e50d647c8f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "64f427ea-0448-4202-9712-c3ab3b6bc16f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131159Z:64f427ea-0448-4202-9712-c3ab3b6bc16f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:11:58 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f2dd6b68-ea3b-4258-8cbe-e71381926cfe" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b49b7132-974a-4d43-b1ac-13153041d4e2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131232Z:b49b7132-974a-4d43-b1ac-13153041d4e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:12:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1b3097e8-73ed-4c61-946c-abe38f5249fb" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c1a09a21-7cba-45c3-b2f1-af4c4f240297" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131303Z:c1a09a21-7cba-45c3-b2f1-af4c4f240297" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:13:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f47b4d1e-1d04-486d-8773-d3f5984c9f5b" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f1fa0b8a-da7f-4e07-9b8a-6193d3ecbee8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131333Z:f1fa0b8a-da7f-4e07-9b8a-6193d3ecbee8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:13:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f9b7e186-3f09-40ef-8857-f80805e5152d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "53766e27-5124-472e-855a-7742a5e83b5f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131404Z:53766e27-5124-472e-855a-7742a5e83b5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:14:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3e334a03-4215-4dd6-9179-39c07b718c8d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "490f2545-bef3-4755-844b-bb5a3680e26b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131435Z:490f2545-bef3-4755-844b-bb5a3680e26b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:14:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f45f11cd-72a6-4777-9ba2-50a63865466a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "66ad45e2-0da1-433a-b824-67de22dfadcd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131506Z:66ad45e2-0da1-433a-b824-67de22dfadcd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:15:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e326aef2-a950-4424-b7b4-c843fbce9fc7" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "4c5d6f14-91b4-4512-8504-bf9d4eb766fe" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131537Z:4c5d6f14-91b4-4512-8504-bf9d4eb766fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:15:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "73748129-278c-43b6-8245-94c8b1b0e31e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b513a30f-a59f-4a7c-9ebc-28d5e9226e5c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131607Z:b513a30f-a59f-4a7c-9ebc-28d5e9226e5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:16:07 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7d826718-dea5-428e-be8f-b5cccd5e34bf" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "953bedc2-fdf4-4b8f-87a4-a8cd2c986b8b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131640Z:953bedc2-fdf4-4b8f-87a4-a8cd2c986b8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:16:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "56205921-2128-469d-8c32-5449e57923a0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f6f00a63-155c-4964-9b33-e0a350c06e7f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131710Z:f6f00a63-155c-4964-9b33-e0a350c06e7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:17:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e852d5b2-6ab5-45b5-8714-464f29840417" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "0153261f-f383-497e-80d5-f275b9726315" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131741Z:0153261f-f383-497e-80d5-f275b9726315" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:17:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d490bbdd-abea-4890-9a97-898e8e5c5ccd" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "132d8eb3-79ab-4657-a50b-274e34e4bbbf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131812Z:132d8eb3-79ab-4657-a50b-274e34e4bbbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:18:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0fb97d1b-6ebc-4860-bb51-06ddfe728cc7" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "1db29a81-1af1-489f-beee-c1f843b06fea" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131842Z:1db29a81-1af1-489f-beee-c1f843b06fea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:18:42 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "15e0b168-9959-4ef5-bac0-ebaaf2c18f4b" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "701df26b-3705-4f25-8260-702a677c308c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e129208a-54cd-4866-a60d-48331335bd75" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131843Z:e129208a-54cd-4866-a60d-48331335bd75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:18:42 GMT" - ], - "Content-Length": [ - "2750" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554\",\r\n \"name\": \"hdi-ps-test3554\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"ce25c767-f1ca-4b88-9f56-bae0e255d0a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.0\"\r\n }\r\n },\r\n \"clusterId\": \"d79b85d135a44d78b12f381878ac7712\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"kafkamanagementnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"kmuserfee0a\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T13:06:47.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"KafkaRestProxyPublicEndpoint\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554-kafkarest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"kafkaRestProperties\": {\r\n \"clientGroupInfo\": {\r\n \"groupName\": \"FakeClientGroup\",\r\n \"groupId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"configurationOverride\": null\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7924.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3554\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "018b3646-ea9e-4013-a226-a2dc1f6dff91" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b94638d2-bc4e-4fcb-a6f2-30b8d5b41a04" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c1d6a77c-1c45-45c0-bfa3-fad0c490374d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131853Z:c1d6a77c-1c45-45c0-bfa3-fad0c490374d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:18:52 GMT" - ], - "Content-Length": [ - "2750" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554\",\r\n \"name\": \"hdi-ps-test3554\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"ce25c767-f1ca-4b88-9f56-bae0e255d0a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.0\"\r\n }\r\n },\r\n \"clusterId\": \"d79b85d135a44d78b12f381878ac7712\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"kafkamanagementnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"kmuserfee0a\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T13:06:47.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"KafkaRestProxyPublicEndpoint\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554-kafkarest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"kafkaRestProperties\": {\r\n \"clientGroupInfo\": {\r\n \"groupName\": \"FakeClientGroup\",\r\n \"groupId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"configurationOverride\": null\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7924.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3554\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "018b3646-ea9e-4013-a226-a2dc1f6dff91" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2012,151 +161,62 @@ "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ - "d191a0f7-f388-4b54-9704-b4b0f3a73717", - "bc614a5b-599d-4223-8caa-19d4d7b121e0", - "12a068d7-9d03-4008-8c30-29b6bff4f1d1", - "16cfb4df-fd55-4b99-90b2-1ea1fa575713", - "d7da7672-c464-4da6-94bc-632fe8a3e86b", - "2a919cf3-4bad-4e8b-b017-69abc88ffb2e", - "40589750-6e12-4dc3-a664-9a17cf1c0192", - "41bc2517-4373-4235-807d-a4ab1b8b26be", - "5179a344-25cf-41ec-9009-6c8995c53461", - "3d9ef313-4413-4bf7-b1d6-cf006bb6789d", - "0f14b186-af95-465e-9e11-0a875f36f413", - "69e33d41-5b60-43c3-9a60-c95174707e7d", - "68839f7e-b333-4398-88be-24419f7daf6c", - "94fa9b30-e87e-4310-a8d6-baa554f09efb" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/1884b776-aea8-4bbe-85e6-36d76f84db59?monitor=true&api-version=2017-10-01" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "Retry-After": [ + "3" ], "x-ms-request-id": [ - "c7a8d723-6486-46eb-90bf-3c8b15fb7c48" - ], - "x-ms-correlation-request-id": [ - "c7a8d723-6486-46eb-90bf-3c8b15fb7c48" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131852Z:c7a8d723-6486-46eb-90bf-3c8b15fb7c48" + "d54ed7bf-b96e-4081-9508-4371859d5d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:18:51 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "260692" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/cluster-1\",\r\n \"name\": \"cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a431157f-6c5a-4fe3-895f-95c8a33fbf2d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"679fd62bb7c34ac3b3418613af779647\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:48:49.733\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cluster1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.Storage/storageAccounts/cluster1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cluster-1-2021-11-18t09-36-59-829z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/fwruletestnostorage\",\r\n \"name\": \"fwruletestnostorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"d6bad2da-8c82-43a4-8987-4004d2864b00\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"38eebfcb4f57454c8ad6c7ec2c7baa48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T04:12:41.03\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: HIVE_METASTORE, HIVE_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER, APP_TIMELINE_SERVER, HISTORYSERVER, LIVY2_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fwruletestnostorage-2021-11-18t04-10-53-063z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/natgwtestshangwei\",\r\n \"name\": \"natgwtestshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"14f96cb1-3274-430b-9b4a-968628247675\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"2b00504bfa6243d5b1e85499a412ea7d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-17T04:59:14.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.2.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"natgwtestshanhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/natgwtestshanhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"natgwtestshangwei-2021-11-17t04-56-40-633z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/noeventhubtestfwrule\",\r\n \"name\": \"noeventhubtestfwrule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9e737c8a-f3f6-4143-8642-01e2669da20a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e704fc8f6ff447df87f193ebf6fa778e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T06:23:52.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"noeventhubtestfwrule-2021-11-18t06-21-43-155z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/plobshangwei1104\",\r\n \"name\": \"plobshangwei1104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"10b8b4f2-1451-4857-96db-d6becd92f052\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e82e156040f04a2084462f47a97e790a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:06:31.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.24\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plobshangwei1104-2021-11-18t03-04-32-097z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/removeservicebus\",\r\n \"name\": \"removeservicebus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"40472f2c-e9cc-4c2a-baea-73f3c83ea6b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"9d24322384fe4bd487f0c530d6a93e0e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:25:54.27\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.40\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"removeservicebus-2021-11-18t09-24-34-018z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-re-hdi\",\r\n \"name\": \"shangwei-re-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6ae5b2-e52a-4218-bc6c-86116159476b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ac85f4d11a8f496f94ff739a8f71790c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-29T07:58:27.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweirehdihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweirehdihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-re-hdi-2021-10-29t07-56-05-875z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-script\",\r\n \"name\": \"shiyi-trial-hadoop-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"1ca32779-0cee-420f-a5ba-908b3185ab74\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c85a253c646c4aaab769bb0118eff80d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-28T08:20:39.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://shiyitrialhadhdistorage.blob.core.windows.net/scriptprivate/test1.sh. Exception message: The remote server returned an error: (404) Not Found..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhadhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhadhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-scri-2021-12-28t08-18-03-877z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-vnet\",\r\n \"name\": \"shiyi-trial-hadoop-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a59f77a7-dd4c-4c94-9959-6910e34f73e9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b4b6c088cc544abb8039c6f8af97e1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:06:25.67\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhdpvnetstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhdpvnetstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-vnet-2021-12-31t03-02-31-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/sn27-shiyi-trial-hadoop-scale\",\r\n \"name\": \"sn27-shiyi-trial-hadoop-scale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"bdf10645-3d33-4502-95f3-d69df6d56ee7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"67cbcdca754c4108936fa75ad6498266\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:34:44.39\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sn27shiyitriahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/sn27shiyitriahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sn27shiyi-trial-hadoop-2021-12-31t03-16-52-081z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/testfwnoule\",\r\n \"name\": \"testfwnoule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9f44e2cc-000b-46af-b38b-e0ef7182c0e7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb384cdc9f1b486b80711578a46abaf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T12:20:39.717\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: APP_TIMELINE_SERVER, HISTORYSERVER, HIVE_METASTORE, HIVE_SERVER, JUPYTER_MASTER, LIVY2_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.55\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testfwnoule-2021-11-18t12-18-19-302z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/wildcardfwruleshangwei\",\r\n \"name\": \"wildcardfwruleshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"22b98b3e-7606-4cfe-8893-3d129cff0cf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"629252fd20ad4a9ab233d8d6b8e103f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:17:24.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wildcardfwruleshangwei-2021-11-18t03-15-34-205z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1ipleak1015\",\r\n \"name\": \"x1ipleak1015\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6f98f45a-83c4-49c9-b1b2-2778db052f65\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"728ba7042d844ed4a77e07116acceadd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-15T02:13:18.147\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1ipleak1015hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1ipleak1015hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1ipleak1015-2021-10-15t02-10-55-571z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziweitrial160\",\r\n \"name\": \"ziweitrial160\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8c4eab1d-99ec-4613-ad11-3489b4d792cf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1ece0f96973f47ac90fc5dc4d15d9111\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-16T09:03:17.753\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitrial160hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitrial160hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweitrial160-2021-11-16t08-55-33-161z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziwei-vnet-pl-cluster\",\r\n \"name\": \"ziwei-vnet-pl-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8f0d2245-ed9f-4404-b8b7-579d52d44a3a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5da9295f9ab9445da64de0d2ad3232db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-12-28T06:45:14.37\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitestvnethdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitestvnethdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziwei-vnet-pl-cluster-2021-12-28t06-42-56-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimeout11152\",\r\n \"name\": \"x1sshtimeout11152\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"793ff34c-4c91-4097-800f-2dc232465e3e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1cdbc57ba4da4e9484582e8d9bf1a549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:51:38.26\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimeout1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimeout1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimeout11-2021-11-15t01-48-59-363z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.HDInsight/clusters/silahu1zonewesteurope1\",\r\n \"name\": \"silahu1zonewesteurope1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"1c136beb-cd76-47c8-b353-e6558cb4eb44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"38db6e1a7b9741eca9d35039be544888\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-21T02:28:39.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahustorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Storage/storageAccounts/silahustorageaccount1\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.HDInsight/clusters/silahu-crosssub-test2\",\r\n \"name\": \"silahu-crosssub-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"089e7bb4-7657-4305-9b0a-20c015e46cc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"642b4c83bb09425f90ff700285b7cfee\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-24T06:02:51.847\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"crosssubsc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.Storage/storageAccounts/crosssubsc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout1115\",\r\n \"name\": \"x1sshtimout1115\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"44ab8c70-4843-4eea-a002-ca7cd35b2eb1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab8de7f7ee9d4cc1b5def2ed3cde382a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T00:44:43.387\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout11-2021-11-15t00-41-36-598z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout11151\",\r\n \"name\": \"x1sshtimout11151\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"7b36a6f7-593f-40f6-99d1-30124df683b3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45d64e947e9a40ed9b88739372195f66\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:39:30.447\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout111-2021-11-15t01-38-23-654z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.HDInsight/clusters/cunfeng-poc-cluster\",\r\n \"name\": \"cunfeng-poc-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ee606cd7-9b59-41d6-a671-5334b8fdaf73\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"edda8b6eef5849a68c20e6268d069b3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T10:49:05.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cunfengpoccluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.Storage/storageAccounts/cunfengpoccluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cunfeng-poc-cluster-2022-02-08t10-46-13-585z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test\",\r\n \"name\": \"pl-silahu-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b3b8670c-6ffb-443d-9f8e-6a8aae83d4cc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3a4bfe669a4147008b4e19238acfb99b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-04T14:00:54.667\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuprivatelinkstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Storage/storageAccounts/silahuprivatelinkstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plsilahu-test-2021-11-04t13-56-21-932z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test/privateEndpointConnections/testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"name\": \"testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelinkconsumer/providers/Microsoft.Network/privateEndpoints/testgateway-privateendpoint\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"536936262\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-ob-nopl\",\r\n \"name\": \"shangwei-ob-nopl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d244f602-b354-47da-9503-409e24881d80\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"59a4b07b702a4b11b9a62df0a20176a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-03T08:43:52.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.16.10.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiobnophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweiobnophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-ob-nopl-2021-11-03t08-38-14-544z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x111081outbound\",\r\n \"name\": \"x111081outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4323c35d-e603-4185-a805-02c2eafa263a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6b914129c5b413cb5d1f9f2fd660773\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-08T03:53:49.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x111081outbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x111081outbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x111081outbound-2021-11-08t03-51-20-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-azsecpack\",\r\n \"name\": \"yalu-azsecpack\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"322625f0-c3da-4054-be75-9311ea323fe3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f849798233f44c3b773b4ab19ee94b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-01-17T12:15:41.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluazsecpackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluazsecpackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-azsecpack-2022-01-17t12-13-51-157z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahu-etest1\",\r\n \"name\": \"silahu-etest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"987f491e-27a6-4ac2-aa54-cb8275600c58\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bc0f1a8324a74614ba7973dcf9b9b2f5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-13T12:54:31.793\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahuetest1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahu-etest1-2021-12-13t12-53-00-904z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahukrtest\",\r\n \"name\": \"silahukrtest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"5c767562-af30-4185-91cd-faed26a679b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ad187c871ff54bada6f78fcf6d7fedcc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-20T05:41:02.083\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahukrtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahukrtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahukrtest-2021-12-20t05-38-08-665z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbug\",\r\n \"name\": \"clitestfixbug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d2f6c521-abf3-45be-9e0c-2f701c72724d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"950de3d531bb423eb0a586034a3e7206\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T07:01:23.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbug\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbuge2host\",\r\n \"name\": \"clitestfixbuge2host\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"11bfcbff-9d54-4421-80a8-edb25ddfa537\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"df3254fd7e564f9eb979d3b37287de2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T08:09:43.2\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbuge2host\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-plconfig\",\r\n \"name\": \"hdips-plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dd9771ba-b469-460f-be04-07d2a1663572\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c88c6222064a4ba1bcb5a20bf953c7fd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-26T07:24:59.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdips-plconfig\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554\",\r\n \"name\": \"hdi-ps-test3554\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"ce25c767-f1ca-4b88-9f56-bae0e255d0a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.0\"\r\n }\r\n },\r\n \"clusterId\": \"d79b85d135a44d78b12f381878ac7712\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"kafkamanagementnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"kmuserfee0a\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T13:06:47.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"KafkaRestProxyPublicEndpoint\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554-kafkarest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"kafkaRestProperties\": {\r\n \"clientGroupInfo\": {\r\n \"groupName\": \"FakeClientGroup\",\r\n \"groupId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"configurationOverride\": null\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7924.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3554\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/hfeb1hdinsight\",\r\n \"name\": \"hfeb1hdinsight\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"950d0f79-a429-484b-a225-ca34753440f1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"94f864b7c7c44d5f8efd412fde466278\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-01T10:27:49.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"feb1hdinsighthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/feb1hdinsighthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"feb1hdinsight-2022-02-01t09-36-05-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/kafka1804rel1\",\r\n \"name\": \"kafka1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dcd03388-2dcd-42fd-a56f-57886e873566\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4cb83c10697345a1ba82bafe4632da68\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:06:43.373\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafka1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/kafka1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafka1804rel1-2021-11-18t02-05-19-981z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/somfeb2hd\",\r\n \"name\": \"somfeb2hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fd449ae-2e3e-44ae-9af7-46df5c762ba7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"68d40ad695da407cbdb0974af0281ef9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-02T05:12:03.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"somfeb2hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/somfeb2hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"somfeb2hd-2022-02-02t05-08-51-016z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel\",\r\n \"name\": \"spark1804rel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9ec1368d-09a4-4131-b9ea-76130bf8c368\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2110121746.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"cf27f21b68cc4944aa8fe9afed03c309\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T01:28:07.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804relhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804relhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel-2021-11-18t01-26-57-400z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel1\",\r\n \"name\": \"spark1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1e79959-5638-444c-9b94-0639020b656d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"4afc3d89289a47c4a909ec3375bdc1c5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:04:05.393\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel1-2021-11-18t02-03-00-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel3\",\r\n \"name\": \"spark1804rel3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d97e9edf-b1cc-4ee7-a12b-15a0ecca4ea4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"3a7c48030d6f41b7bbfca7ea61a87498\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T03:00:04.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepstacc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/adkorlepstacc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel3-2021-11-18t02-59-11-390z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/testmsgraph1\",\r\n \"name\": \"testmsgraph1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"120fb6db-e245-44df-a93e-9643bc7850c2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202040503.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"909d18d761d34d67b8549829e6529f45\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-08T09:13:46.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1offlineverify1102\",\r\n \"name\": \"x1offlineverify1102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"4ed0cd0f-43ad-4152-885b-6cf9da9a0635\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2110271403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"311edd2109ab4f3d96356d2147146f38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-02T12:25:05.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1offlineverihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1offlineverihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1offlineverify1102-2021-11-02t12-21-53-880z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.HDInsight/clusters/sijin-test\",\r\n \"name\": \"sijin-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"01328369-b1f4-47ae-a0ff-09aec89768f5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"53fe2a909e1c46d6a3a49920d16898b6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-07T18:39:50.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijintesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.Storage/storageAccounts/sijintesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-test-2022-02-07t18-38-45-444z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7be06736-973e-45de-a026-178aac277388" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "05f90bc5-ebe4-48d8-a8d3-687247dc09b7", - "f7b0c174-8b7c-4afb-8e58-8a484f2f5c49", - "57e00e56-1355-414b-a046-2d59573954a1", - "e77e3a69-e0b7-4804-95df-e25ad2c29e5c", - "4b585293-2fb1-45a8-b7e9-f175e19dee86", - "df9c4070-e42e-425d-849c-79a4d2a891b2", - "70639793-63d2-4a68-82f9-3279f73e6d13", - "3a613431-f4a7-4af9-bdcf-a70dbce28c92", - "7c434faa-b1a6-40e7-b80f-a655416bbe65", - "d1b748b0-e193-40a4-aadc-8fbbb7007a5b", - "ab09716f-3eb0-4a47-a8ae-fd9372cafa73", - "f69115a0-989f-477a-8461-6a01e326ed90", - "8e0cb50b-7c4f-466f-a483-787d892046c1", - "491e3c27-f71c-4df5-b556-72d95d85fc8f" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-request-id": [ - "bbf7b322-5f2c-4eb3-8a95-7c65ce5daa5b" + "11999" ], "x-ms-correlation-request-id": [ - "bbf7b322-5f2c-4eb3-8a95-7c65ce5daa5b" + "e23cb584-e7c0-4d68-9ff4-9771afaa4b39" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131901Z:bbf7b322-5f2c-4eb3-8a95-7c65ce5daa5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "JAPANEAST:20230803T062017Z:e23cb584-e7c0-4d68-9ff4-9771afaa4b39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:19:00 GMT" + "Thu, 03 Aug 2023 06:20:16 GMT" ], "Content-Type": [ - "application/json; charset=utf-8" + "text/plain; charset=utf-8" ], "Expires": [ "-1" ], "Content-Length": [ - "260692" + "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/cluster-1\",\r\n \"name\": \"cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a431157f-6c5a-4fe3-895f-95c8a33fbf2d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"679fd62bb7c34ac3b3418613af779647\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:48:49.733\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cluster1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.Storage/storageAccounts/cluster1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cluster-1-2021-11-18t09-36-59-829z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/fwruletestnostorage\",\r\n \"name\": \"fwruletestnostorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"d6bad2da-8c82-43a4-8987-4004d2864b00\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"38eebfcb4f57454c8ad6c7ec2c7baa48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T04:12:41.03\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: HIVE_METASTORE, HIVE_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER, APP_TIMELINE_SERVER, HISTORYSERVER, LIVY2_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fwruletestnostorage-2021-11-18t04-10-53-063z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/natgwtestshangwei\",\r\n \"name\": \"natgwtestshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"14f96cb1-3274-430b-9b4a-968628247675\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"2b00504bfa6243d5b1e85499a412ea7d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-17T04:59:14.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.2.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"natgwtestshanhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/natgwtestshanhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"natgwtestshangwei-2021-11-17t04-56-40-633z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/noeventhubtestfwrule\",\r\n \"name\": \"noeventhubtestfwrule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9e737c8a-f3f6-4143-8642-01e2669da20a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e704fc8f6ff447df87f193ebf6fa778e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T06:23:52.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"noeventhubtestfwrule-2021-11-18t06-21-43-155z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/plobshangwei1104\",\r\n \"name\": \"plobshangwei1104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"10b8b4f2-1451-4857-96db-d6becd92f052\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e82e156040f04a2084462f47a97e790a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:06:31.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.24\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plobshangwei1104-2021-11-18t03-04-32-097z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/removeservicebus\",\r\n \"name\": \"removeservicebus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"40472f2c-e9cc-4c2a-baea-73f3c83ea6b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"9d24322384fe4bd487f0c530d6a93e0e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:25:54.27\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.40\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"removeservicebus-2021-11-18t09-24-34-018z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-re-hdi\",\r\n \"name\": \"shangwei-re-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6ae5b2-e52a-4218-bc6c-86116159476b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ac85f4d11a8f496f94ff739a8f71790c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-29T07:58:27.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweirehdihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweirehdihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-re-hdi-2021-10-29t07-56-05-875z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-script\",\r\n \"name\": \"shiyi-trial-hadoop-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"1ca32779-0cee-420f-a5ba-908b3185ab74\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c85a253c646c4aaab769bb0118eff80d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-28T08:20:39.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://shiyitrialhadhdistorage.blob.core.windows.net/scriptprivate/test1.sh. Exception message: The remote server returned an error: (404) Not Found..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhadhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhadhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-scri-2021-12-28t08-18-03-877z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-vnet\",\r\n \"name\": \"shiyi-trial-hadoop-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a59f77a7-dd4c-4c94-9959-6910e34f73e9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b4b6c088cc544abb8039c6f8af97e1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:06:25.67\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhdpvnetstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhdpvnetstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-vnet-2021-12-31t03-02-31-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/sn27-shiyi-trial-hadoop-scale\",\r\n \"name\": \"sn27-shiyi-trial-hadoop-scale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"bdf10645-3d33-4502-95f3-d69df6d56ee7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"67cbcdca754c4108936fa75ad6498266\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:34:44.39\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sn27shiyitriahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/sn27shiyitriahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sn27shiyi-trial-hadoop-2021-12-31t03-16-52-081z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/testfwnoule\",\r\n \"name\": \"testfwnoule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9f44e2cc-000b-46af-b38b-e0ef7182c0e7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb384cdc9f1b486b80711578a46abaf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T12:20:39.717\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: APP_TIMELINE_SERVER, HISTORYSERVER, HIVE_METASTORE, HIVE_SERVER, JUPYTER_MASTER, LIVY2_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.55\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testfwnoule-2021-11-18t12-18-19-302z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/wildcardfwruleshangwei\",\r\n \"name\": \"wildcardfwruleshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"22b98b3e-7606-4cfe-8893-3d129cff0cf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"629252fd20ad4a9ab233d8d6b8e103f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:17:24.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wildcardfwruleshangwei-2021-11-18t03-15-34-205z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1ipleak1015\",\r\n \"name\": \"x1ipleak1015\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6f98f45a-83c4-49c9-b1b2-2778db052f65\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"728ba7042d844ed4a77e07116acceadd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-15T02:13:18.147\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1ipleak1015hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1ipleak1015hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1ipleak1015-2021-10-15t02-10-55-571z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziweitrial160\",\r\n \"name\": \"ziweitrial160\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8c4eab1d-99ec-4613-ad11-3489b4d792cf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1ece0f96973f47ac90fc5dc4d15d9111\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-16T09:03:17.753\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitrial160hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitrial160hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweitrial160-2021-11-16t08-55-33-161z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziwei-vnet-pl-cluster\",\r\n \"name\": \"ziwei-vnet-pl-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8f0d2245-ed9f-4404-b8b7-579d52d44a3a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5da9295f9ab9445da64de0d2ad3232db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-12-28T06:45:14.37\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitestvnethdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitestvnethdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziwei-vnet-pl-cluster-2021-12-28t06-42-56-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimeout11152\",\r\n \"name\": \"x1sshtimeout11152\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"793ff34c-4c91-4097-800f-2dc232465e3e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1cdbc57ba4da4e9484582e8d9bf1a549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:51:38.26\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimeout1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimeout1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimeout11-2021-11-15t01-48-59-363z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.HDInsight/clusters/silahu1zonewesteurope1\",\r\n \"name\": \"silahu1zonewesteurope1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"1c136beb-cd76-47c8-b353-e6558cb4eb44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"38db6e1a7b9741eca9d35039be544888\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-21T02:28:39.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahustorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Storage/storageAccounts/silahustorageaccount1\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.HDInsight/clusters/silahu-crosssub-test2\",\r\n \"name\": \"silahu-crosssub-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"089e7bb4-7657-4305-9b0a-20c015e46cc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"642b4c83bb09425f90ff700285b7cfee\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-24T06:02:51.847\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"crosssubsc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.Storage/storageAccounts/crosssubsc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout1115\",\r\n \"name\": \"x1sshtimout1115\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"44ab8c70-4843-4eea-a002-ca7cd35b2eb1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab8de7f7ee9d4cc1b5def2ed3cde382a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T00:44:43.387\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout11-2021-11-15t00-41-36-598z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout11151\",\r\n \"name\": \"x1sshtimout11151\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"7b36a6f7-593f-40f6-99d1-30124df683b3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45d64e947e9a40ed9b88739372195f66\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:39:30.447\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout111-2021-11-15t01-38-23-654z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.HDInsight/clusters/cunfeng-poc-cluster\",\r\n \"name\": \"cunfeng-poc-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ee606cd7-9b59-41d6-a671-5334b8fdaf73\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"edda8b6eef5849a68c20e6268d069b3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T10:49:05.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cunfengpoccluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.Storage/storageAccounts/cunfengpoccluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cunfeng-poc-cluster-2022-02-08t10-46-13-585z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test\",\r\n \"name\": \"pl-silahu-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b3b8670c-6ffb-443d-9f8e-6a8aae83d4cc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3a4bfe669a4147008b4e19238acfb99b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-04T14:00:54.667\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuprivatelinkstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Storage/storageAccounts/silahuprivatelinkstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plsilahu-test-2021-11-04t13-56-21-932z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test/privateEndpointConnections/testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"name\": \"testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelinkconsumer/providers/Microsoft.Network/privateEndpoints/testgateway-privateendpoint\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"536936262\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-ob-nopl\",\r\n \"name\": \"shangwei-ob-nopl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d244f602-b354-47da-9503-409e24881d80\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"59a4b07b702a4b11b9a62df0a20176a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-03T08:43:52.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.16.10.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiobnophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweiobnophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-ob-nopl-2021-11-03t08-38-14-544z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x111081outbound\",\r\n \"name\": \"x111081outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4323c35d-e603-4185-a805-02c2eafa263a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6b914129c5b413cb5d1f9f2fd660773\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-08T03:53:49.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x111081outbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x111081outbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x111081outbound-2021-11-08t03-51-20-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-azsecpack\",\r\n \"name\": \"yalu-azsecpack\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"322625f0-c3da-4054-be75-9311ea323fe3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f849798233f44c3b773b4ab19ee94b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-01-17T12:15:41.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluazsecpackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluazsecpackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-azsecpack-2022-01-17t12-13-51-157z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahu-etest1\",\r\n \"name\": \"silahu-etest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"987f491e-27a6-4ac2-aa54-cb8275600c58\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bc0f1a8324a74614ba7973dcf9b9b2f5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-13T12:54:31.793\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahuetest1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahu-etest1-2021-12-13t12-53-00-904z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahukrtest\",\r\n \"name\": \"silahukrtest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"5c767562-af30-4185-91cd-faed26a679b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ad187c871ff54bada6f78fcf6d7fedcc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-20T05:41:02.083\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahukrtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahukrtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahukrtest-2021-12-20t05-38-08-665z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbug\",\r\n \"name\": \"clitestfixbug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d2f6c521-abf3-45be-9e0c-2f701c72724d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"950de3d531bb423eb0a586034a3e7206\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T07:01:23.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbug\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbuge2host\",\r\n \"name\": \"clitestfixbuge2host\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"11bfcbff-9d54-4421-80a8-edb25ddfa537\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"df3254fd7e564f9eb979d3b37287de2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T08:09:43.2\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbuge2host\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-plconfig\",\r\n \"name\": \"hdips-plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dd9771ba-b469-460f-be04-07d2a1663572\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c88c6222064a4ba1bcb5a20bf953c7fd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-26T07:24:59.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdips-plconfig\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554\",\r\n \"name\": \"hdi-ps-test3554\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"ce25c767-f1ca-4b88-9f56-bae0e255d0a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.0\"\r\n }\r\n },\r\n \"clusterId\": \"d79b85d135a44d78b12f381878ac7712\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"kafkamanagementnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"kmuserfee0a\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T13:06:47.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"KafkaRestProxyPublicEndpoint\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3554-kafkarest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"kafkaRestProperties\": {\r\n \"clientGroupInfo\": {\r\n \"groupName\": \"FakeClientGroup\",\r\n \"groupId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"configurationOverride\": null\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7924.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.Storage/storageAccounts/storagepstest7924\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3554\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/hfeb1hdinsight\",\r\n \"name\": \"hfeb1hdinsight\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"950d0f79-a429-484b-a225-ca34753440f1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"94f864b7c7c44d5f8efd412fde466278\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-01T10:27:49.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"feb1hdinsighthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/feb1hdinsighthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"feb1hdinsight-2022-02-01t09-36-05-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/kafka1804rel1\",\r\n \"name\": \"kafka1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dcd03388-2dcd-42fd-a56f-57886e873566\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4cb83c10697345a1ba82bafe4632da68\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:06:43.373\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafka1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/kafka1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafka1804rel1-2021-11-18t02-05-19-981z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/somfeb2hd\",\r\n \"name\": \"somfeb2hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fd449ae-2e3e-44ae-9af7-46df5c762ba7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"68d40ad695da407cbdb0974af0281ef9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-02T05:12:03.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"somfeb2hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/somfeb2hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"somfeb2hd-2022-02-02t05-08-51-016z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel\",\r\n \"name\": \"spark1804rel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9ec1368d-09a4-4131-b9ea-76130bf8c368\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2110121746.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"cf27f21b68cc4944aa8fe9afed03c309\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T01:28:07.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804relhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804relhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel-2021-11-18t01-26-57-400z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel1\",\r\n \"name\": \"spark1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1e79959-5638-444c-9b94-0639020b656d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"4afc3d89289a47c4a909ec3375bdc1c5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:04:05.393\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel1-2021-11-18t02-03-00-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel3\",\r\n \"name\": \"spark1804rel3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d97e9edf-b1cc-4ee7-a12b-15a0ecca4ea4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"3a7c48030d6f41b7bbfca7ea61a87498\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T03:00:04.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepstacc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/adkorlepstacc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel3-2021-11-18t02-59-11-390z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/testmsgraph1\",\r\n \"name\": \"testmsgraph1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"120fb6db-e245-44df-a93e-9643bc7850c2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202040503.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"909d18d761d34d67b8549829e6529f45\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-08T09:13:46.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1offlineverify1102\",\r\n \"name\": \"x1offlineverify1102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"4ed0cd0f-43ad-4152-885b-6cf9da9a0635\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2110271403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"311edd2109ab4f3d96356d2147146f38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-02T12:25:05.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1offlineverihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1offlineverihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1offlineverify1102-2021-11-02t12-21-53-880z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.HDInsight/clusters/sijin-test\",\r\n \"name\": \"sijin-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"01328369-b1f4-47ae-a0ff-09aec89768f5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"53fe2a909e1c46d6a3a49920d16898b6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-07T18:39:50.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijintesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.Storage/storageAccounts/sijintesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-test-2022-02-07t18-38-45-444z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/configurations/core-site?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9jb25maWd1cmF0aW9ucy9jb3JlLXNpdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/1884b776-aea8-4bbe-85e6-36d76f84db59?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8xODg0Yjc3Ni1hZWE4LTRiYmUtODVlNi0zNmQ3NmY4NGRiNTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "018b3646-ea9e-4013-a226-a2dc1f6dff91" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2165,64 +225,61 @@ "no-cache" ], "x-ms-request-id": [ - "9e9ef9d3-d76e-469e-953c-d1cf5aba1a20" + "4b288c76-ac0a-47f9-9396-8d57cdf9a9d4" ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8ab9ab1a-6646-4abe-8092-ff542aac0186" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11998" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131853Z:8ab9ab1a-6646-4abe-8092-ff542aac0186" + "x-ms-correlation-request-id": [ + "2778c805-b555-467a-9529-c8d51ea34569" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T062020Z:2778c805-b555-467a-9529-c8d51ea34569" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:18:53 GMT" + "Thu, 03 Aug 2023 06:20:19 GMT" ], "Content-Length": [ - "152" + "1393" ], "Content-Type": [ - "application/json; charset=Windows-1252" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"fs.defaultFS\": \"wasb://hdi-ps-test3554@storagepstest7924.blob.core.windows.net\",\r\n \"fs.azure.account.key.storagepstest7924.blob.core.windows.net\": \"*****\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1946/providers/Microsoft.Storage/storageAccounts/storagepstest9435\",\r\n \"name\": \"storagepstest9435\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-08-03T06:19:55.1830596Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-08-03T06:19:55.1830596Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-08-03T06:19:55.1049776Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9435.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9435.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9435.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest9435.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9435-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9435-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9435-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554/configurations/clusterIdentity?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1NC9jb25maWd1cmF0aW9ucy9jbHVzdGVySWRlbnRpdHk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test1946/providers/Microsoft.Storage/storageAccounts/storagepstest9435/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QxOTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDk0MzUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "018b3646-ea9e-4013-a226-a2dc1f6dff91" + "c66b376f-223f-498e-9189-35f019847efa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2231,64 +288,61 @@ "no-cache" ], "x-ms-request-id": [ - "8ecb4b36-b5fe-4404-a872-000068127838" + "51e5bf8c-4997-41d8-84c8-f513d8c5921d" ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "9af2110c-218c-4aad-8505-9ddf4d985e4b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131854Z:9af2110c-218c-4aad-8505-9ddf4d985e4b" + "x-ms-correlation-request-id": [ + "e0ebb6af-f28c-46f6-8ade-211d4fa8418f" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230803T062020Z:e0ebb6af-f28c-46f6-8ade-211d4fa8418f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:18:53 GMT" + "Thu, 03 Aug 2023 06:20:20 GMT" ], "Content-Length": [ - "2" + "288" ], "Content-Type": [ - "application/json; charset=Windows-1252" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7897/providers/Microsoft.HDInsight/clusters/hdi-ps-test3554?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzU1ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test1946?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QxOTQ2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7be06736-973e-45de-a026-178aac277388" + "b6c72b7d-8436-4e38-a0c6-16682cdfbbc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2297,31 +351,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/74cd1a8f-173c-425d-80bc-376dc6ba497b-0-r?api-version=2021-06-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ - "60" + "15" ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/74cd1a8f-173c-425d-80bc-376dc6ba497b-0-r?api-version=2021-06-01" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "8ac9e642-38e6-4dcd-b9d6-10f516a67181" - ], - "x-ms-hdi-served-by": [ - "southcentralus" + "3bd2a795-938a-4935-bb81-cc563f946f90" ], "x-ms-correlation-request-id": [ - "2eef5882-a93e-4fd5-8775-42e7dede789f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "3bd2a795-938a-4935-bb81-cc563f946f90" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T131902Z:2eef5882-a93e-4fd5-8775-42e7dede789f" + "JAPANEAST:20230803T064016Z:3bd2a795-938a-4935-bb81-cc563f946f90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2330,7 +375,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:19:02 GMT" + "Thu, 03 Aug 2023 06:40:15 GMT" ], "Expires": [ "-1" @@ -2343,144 +388,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/74cd1a8f-173c-425d-80bc-376dc6ba497b-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy83NGNkMWE4Zi0xNzNjLTQyNWQtODBiYy0zNzZkYzZiYTQ5N2ItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7be06736-973e-45de-a026-178aac277388" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "11857d45-71fa-4a85-afda-63ca7eed9dae" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "9f9d154e-9c73-433d-8987-bb0e09921dbc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132003Z:9f9d154e-9c73-433d-8987-bb0e09921dbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:20:03 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/74cd1a8f-173c-425d-80bc-376dc6ba497b-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzc0Y2QxYThmLTE3M2MtNDI1ZC04MGJjLTM3NmRjNmJhNDk3Yi0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TkRZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "7be06736-973e-45de-a026-178aac277388" - ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0afd2a05-c89e-4fc7-aeeb-0616580bc797" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8ea1c993-3fc6-4571-a8ce-f8eaa57dc801" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132004Z:8ea1c993-3fc6-4571-a8ce-f8eaa57dc801" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 13:20:04 GMT" - ], - "Expires": [ - "-1" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7897?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODk3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0f1b4047-57e1-454f-9644-431be12bbc5b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2489,22 +408,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-request-id": [ - "80cdb127-1677-4eae-b324-40f9d311db1f" + "37ebb238-a399-4d80-b5e1-6fe75d1204b7" ], "x-ms-correlation-request-id": [ - "80cdb127-1677-4eae-b324-40f9d311db1f" + "37ebb238-a399-4d80-b5e1-6fe75d1204b7" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132007Z:80cdb127-1677-4eae-b324-40f9d311db1f" + "JAPANEAST:20230803T064031Z:37ebb238-a399-4d80-b5e1-6fe75d1204b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2513,7 +432,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:20:07 GMT" + "Thu, 03 Aug 2023 06:40:30 GMT" ], "Expires": [ "-1" @@ -2526,18 +445,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TkRZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2546,7 +465,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2555,13 +474,13 @@ "11998" ], "x-ms-request-id": [ - "002523b8-5c8d-4b9c-b641-c0e5dc4a94c0" + "e38c0b5d-da24-4974-833a-c69c72ba7373" ], "x-ms-correlation-request-id": [ - "002523b8-5c8d-4b9c-b641-c0e5dc4a94c0" + "e38c0b5d-da24-4974-833a-c69c72ba7373" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132023Z:002523b8-5c8d-4b9c-b641-c0e5dc4a94c0" + "JAPANEAST:20230803T064046Z:e38c0b5d-da24-4974-833a-c69c72ba7373" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2570,7 +489,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:20:22 GMT" + "Thu, 03 Aug 2023 06:40:45 GMT" ], "Expires": [ "-1" @@ -2583,18 +502,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TkRZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2603,7 +522,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2612,13 +531,13 @@ "11997" ], "x-ms-request-id": [ - "464f1c78-f6eb-4fbd-a926-239ec114ab70" + "21fa7b07-67a7-4255-aa54-5b7639c1d9bf" ], "x-ms-correlation-request-id": [ - "464f1c78-f6eb-4fbd-a926-239ec114ab70" + "21fa7b07-67a7-4255-aa54-5b7639c1d9bf" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132038Z:464f1c78-f6eb-4fbd-a926-239ec114ab70" + "JAPANEAST:20230803T064101Z:21fa7b07-67a7-4255-aa54-5b7639c1d9bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2627,7 +546,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:20:37 GMT" + "Thu, 03 Aug 2023 06:41:00 GMT" ], "Expires": [ "-1" @@ -2640,18 +559,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TkRZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2660,7 +579,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2669,13 +588,13 @@ "11996" ], "x-ms-request-id": [ - "1f953068-1a5c-40ed-b30b-aacc3726a755" + "bb524ace-d1f3-4115-9515-32ccde27b159" ], "x-ms-correlation-request-id": [ - "1f953068-1a5c-40ed-b30b-aacc3726a755" + "bb524ace-d1f3-4115-9515-32ccde27b159" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132053Z:1f953068-1a5c-40ed-b30b-aacc3726a755" + "JAPANEAST:20230803T064116Z:bb524ace-d1f3-4115-9515-32ccde27b159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2684,7 +603,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:20:52 GMT" + "Thu, 03 Aug 2023 06:41:15 GMT" ], "Expires": [ "-1" @@ -2697,18 +616,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TkRZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2720,13 +639,13 @@ "11995" ], "x-ms-request-id": [ - "424051bc-a6b7-430b-b328-fee592bc4bad" + "c90bd68e-8789-42c9-80b2-bf7c32e751d1" ], "x-ms-correlation-request-id": [ - "424051bc-a6b7-430b-b328-fee592bc4bad" + "c90bd68e-8789-42c9-80b2-bf7c32e751d1" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132109Z:424051bc-a6b7-430b-b328-fee592bc4bad" + "JAPANEAST:20230803T064131Z:c90bd68e-8789-42c9-80b2-bf7c32e751d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2735,7 +654,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:21:09 GMT" + "Thu, 03 Aug 2023 06:41:30 GMT" ], "Expires": [ "-1" @@ -2748,18 +667,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4OTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDE5NDYtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREU1TkRZdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2771,13 +690,13 @@ "11994" ], "x-ms-request-id": [ - "a4a19e61-82b3-4bbd-85f6-88157f652b9d" + "540fcd06-97ec-4a9a-8493-a6cc0f91b328" ], "x-ms-correlation-request-id": [ - "a4a19e61-82b3-4bbd-85f6-88157f652b9d" + "540fcd06-97ec-4a9a-8493-a6cc0f91b328" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T132109Z:a4a19e61-82b3-4bbd-85f6-88157f652b9d" + "JAPANEAST:20230803T064131Z:540fcd06-97ec-4a9a-8493-a6cc0f91b328" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2786,7 +705,7 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 13:21:09 GMT" + "Thu, 03 Aug 2023 06:41:30 GMT" ], "Expires": [ "-1" @@ -2801,9 +720,9 @@ ], "Names": { "Test-CreateClusterWithKafkaRestProxy": [ - "hdi-ps-test3554", - "group-ps-test7897", - "storagepstest7924" + "hdi-ps-test6301", + "group-ps-test1946", + "storagepstest9435" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithLoadBasedAutoscale.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithLoadBasedAutoscale.json index 260f69727298..e3336481179f 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithLoadBasedAutoscale.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithLoadBasedAutoscale.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7252?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7825?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "17d5ad06-7480-4d7c-a0c6-24ac27fcfd52" + "671f8e6a-07e1-41cb-9857-3a126bb24d88" ], "Accept-Language": [ "en-US" @@ -14,17 +14,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "32" ] }, - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "39fef9c8-a8b5-416f-9a09-05e20c046974" + "6bfda102-df54-45fc-a38f-ac92056cbdf5" ], "x-ms-correlation-request-id": [ - "39fef9c8-a8b5-416f-9a09-05e20c046974" + "6bfda102-df54-45fc-a38f-ac92056cbdf5" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T083145Z:39fef9c8-a8b5-416f-9a09-05e20c046974" + "JAPANEAST:20230726T013236Z:6bfda102-df54-45fc-a38f-ac92056cbdf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:31:44 GMT" + "Wed, 26 Jul 2023 01:32:35 GMT" ], "Content-Length": [ - "187" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,16 +63,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252\",\r\n \"name\": \"group-ps-test7252\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7825\",\r\n \"name\": \"group-ps-test7825\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.Storage/storageAccounts/storagepstest3019?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMwMTk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7825/providers/Microsoft.Storage/storageAccounts/storagepstest4677?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDQ2Nzc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "8c57a738-d33f-402d-bf94-4a3bf95ee7a0" + "81cad798-ca52-4eda-811a-e3f910573f3d" ], "Accept-Language": [ "en-US" @@ -80,17 +80,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "101" + "104" ] }, - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/9863bb8d-3fa3-42ca-81a6-adf2f68c2dd6?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/c27a93c9-005d-49f8-a45a-bb1cf8eeba91?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "9863bb8d-3fa3-42ca-81a6-adf2f68c2dd6" + "c27a93c9-005d-49f8-a45a-bb1cf8eeba91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "33b6f7c4-a28b-4d8d-8de8-07dbc98a1b4d" + "cb001011-87b6-40a6-b89c-ef993fc443f3" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T083150Z:33b6f7c4-a28b-4d8d-8de8-07dbc98a1b4d" + "JAPANEAST:20230726T013241Z:cb001011-87b6-40a6-b89c-ef993fc443f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:31:49 GMT" + "Wed, 26 Jul 2023 01:32:40 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,2821 +142,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/9863bb8d-3fa3-42ca-81a6-adf2f68c2dd6?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy85ODYzYmI4ZC0zZmEzLTQyY2EtODFhNi1hZGYyZjY4YzJkZDY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/c27a93c9-005d-49f8-a45a-bb1cf8eeba91?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9jMjdhOTNjOS0wMDVkLTQ5ZjgtYTQ1YS1iYjFjZjhlZWJhOTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8458ab72-8ede-4689-aef9-7b89e520d735" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "c2e9f883-14c5-49ed-b16b-7c721935c903" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083207Z:c2e9f883-14c5-49ed-b16b-7c721935c903" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:32:06 GMT" - ], - "Content-Length": [ - "1384" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.Storage/storageAccounts/storagepstest3019\",\r\n \"name\": \"storagepstest3019\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T08:31:48.0735984Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T08:31:48.0735984Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-04-06T08:31:47.7144056Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3019.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3019.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3019.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest3019.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3019-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3019-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3019-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.Storage/storageAccounts/storagepstest3019/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMwMTkvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffb12efd-e822-4a06-a083-028eff7de5f9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0debafd2-2de6-48d1-bf38-daaed3b6de5f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "f13fc5ba-40ef-4d8d-96c1-02b756cd0413" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083207Z:f13fc5ba-40ef-4d8d-96c1-02b756cd0413" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:32:06 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"nc5zwXk9vp4keTMVbP20YG74/yqYjwsm1EFQqq55w6eDXZP7zEJV3s5++zNhsBN8qACxevMO3/gS+AStz0yxfQ==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"Q+iD5W1xu7RTg8hjEdYwZ607pygBnOad98t/LUaBQ3d207RSC6eT3wA7O/YNvOXJOp9+NKTYIuaT+AStLJDgmA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "edf8025b-77ff-4538-9c3c-559cadc1b3dc" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0474e5b9-dd35-4e06-880d-093d23ec3632" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083209Z:0474e5b9-dd35-4e06-880d-093d23ec3632" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:32:08 GMT" - ], - "Content-Length": [ - "105467" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D15_v2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E48A_V4\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_F1\",\r\n \"STANDARD_F16\",\r\n \"STANDARD_F2\",\r\n \"STANDARD_F4\",\r\n \"STANDARD_F8\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E48a_v4\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"4.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D15_V2\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D15_v2 (20 cores, 143360 MB)\",\r\n \"maxDataDiskCount\": 40,\r\n \"memoryInMb\": 143360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1024000,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E48a_v4 (48 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_F1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F1 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 16384,\r\n \"webWorkerResourceDiskSizeInMb\": 16384\r\n },\r\n {\r\n \"name\": \"STANDARD_F16\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F16 (16 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 262144,\r\n \"webWorkerResourceDiskSizeInMb\": 262144\r\n },\r\n {\r\n \"name\": \"STANDARD_F2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 32768,\r\n \"webWorkerResourceDiskSizeInMb\": 32768\r\n },\r\n {\r\n \"name\": \"STANDARD_F4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F4 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 65536,\r\n \"webWorkerResourceDiskSizeInMb\": 65536\r\n },\r\n {\r\n \"name\": \"STANDARD_F8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F8 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 131072,\r\n \"webWorkerResourceDiskSizeInMb\": 131072\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"East US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2295" - ] - }, - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3019.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test1959\",\r\n \"key\": \"nc5zwXk9vp4keTMVbP20YG74/yqYjwsm1EFQqq55w6eDXZP7zEJV3s5++zNhsBN8qACxevMO3/gS+AStz0yxfQ==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.Storage/storageAccounts/storagepstest3019\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"1ddea05d-a2a3-4dd7-af23-1d1bb00bdf68\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "28b43d86-d279-4fe8-b3c3-59eca0782f46" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f72b8d19-0a41-4273-b821-11f15f69f84c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083214Z:f72b8d19-0a41-4273-b821-11f15f69f84c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:32:14 GMT" - ], - "Content-Length": [ - "2024" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959\",\r\n \"name\": \"hdi-ps-test1959\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1ddea05d-a2a3-4dd7-af23-1d1bb00bdf68\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"23033b162c9b4c969a82a6b5c7d80191\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2023-04-06T08:32:13.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3019.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.Storage/storageAccounts/storagepstest3019\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test1959\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "36e0e658-9066-4259-ae71-bca5040c814b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "327a1598-5d93-49ba-92db-8c0678ea76d7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083245Z:327a1598-5d93-49ba-92db-8c0678ea76d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:32:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "43ee3a2b-6fed-4048-a44d-66f0945faf0c" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f6137aed-22cc-44c8-9654-825eed721465" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083316Z:f6137aed-22cc-44c8-9654-825eed721465" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:33:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f4e6880e-535d-4390-b1d4-2082b2bf66d6" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a69efc7d-6f0c-4c79-ad61-590f31fdc77d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083346Z:a69efc7d-6f0c-4c79-ad61-590f31fdc77d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:33:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7362ca36-ff20-42a5-b5db-e840be92c9bc" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8187afdd-6c86-46f4-a4d7-b5587ce324b3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083417Z:8187afdd-6c86-46f4-a4d7-b5587ce324b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:34:16 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "26f3c491-f297-4208-9452-7504f27d59bc" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b7148299-34c7-42b0-833c-c2e89952a1b3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083448Z:b7148299-34c7-42b0-833c-c2e89952a1b3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:34:48 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "04350d35-f702-4828-83d1-6704e4ca5fec" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "08df3de2-8653-467f-9457-1126a6d9a5cc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083518Z:08df3de2-8653-467f-9457-1126a6d9a5cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:35:18 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6299ca7c-f497-4b93-831e-3d9585fb2b38" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "745fa733-90a5-4592-91bd-bbc0657f3b82" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083549Z:745fa733-90a5-4592-91bd-bbc0657f3b82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:35:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "47aabd94-2333-4833-a1e6-1d22e94a83f8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "84293e83-7fb6-4601-9508-e8b388bda023" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083619Z:84293e83-7fb6-4601-9508-e8b388bda023" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:36:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9aadcd72-9e36-46ca-b7ca-8a91a469b304" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "45f45144-9217-4b52-b511-63e5227b91d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083650Z:45f45144-9217-4b52-b511-63e5227b91d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:36:50 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "53ef2dcf-c2ff-4d2b-8d69-3d1ca7b1c7ea" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "85d05d72-d8bb-4a90-aca4-c660177e6b54" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083721Z:85d05d72-d8bb-4a90-aca4-c660177e6b54" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:37:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "07509af1-c7f7-4d0e-8e55-57d579115778" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "c3f9369c-988e-496a-8dd5-f84cdbfba4dd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083751Z:c3f9369c-988e-496a-8dd5-f84cdbfba4dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:37:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "40efc488-8ab7-4e25-b61c-bb3fbba963e1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "29efbd01-57a0-4e62-bafc-b23134010c4e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083822Z:29efbd01-57a0-4e62-bafc-b23134010c4e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:38:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f358b8de-118f-4ba7-910d-95a7f939abd9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "483580c8-ee8b-4a2e-8374-4949988caa34" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083853Z:483580c8-ee8b-4a2e-8374-4949988caa34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:38:52 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "553da53e-8206-4de9-b36a-1574c5144fa1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0d15bea6-8c93-49ab-bbb4-2e64875806ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083924Z:0d15bea6-8c93-49ab-bbb4-2e64875806ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:39:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fcac72a5-51bd-4ec4-bd88-e9ee74dbbe2f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "cc2095f2-82d6-4b73-a311-2fb743a3844e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T083954Z:cc2095f2-82d6-4b73-a311-2fb743a3844e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:39:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "957f7001-158e-4ae3-ad59-c9772501a08e" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7658030d-260d-4546-bbcf-ddd8df34c43d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084025Z:7658030d-260d-4546-bbcf-ddd8df34c43d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:40:24 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2f3721ee-a2b2-44f9-b891-58b5f3bb1b82" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9b092672-8014-4d09-bdb8-3388be1c1900" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084055Z:9b092672-8014-4d09-bdb8-3388be1c1900" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:40:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3d1d94b4-d4b5-4e33-b1e0-f9587e330daf" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "cbe8a19f-08ee-40f8-836d-172a547f1340" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084126Z:cbe8a19f-08ee-40f8-836d-172a547f1340" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:41:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "631b89d3-a486-49b3-8b12-0b7d41b5cb16" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3c69611c-69a4-4024-a9a5-08bbb13def88" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084157Z:3c69611c-69a4-4024-a9a5-08bbb13def88" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:41:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6a643303-01eb-4651-9d93-e10aa23f5d60" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "08d04bf7-99cc-4e02-a656-a8bf6c8d837b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084227Z:08d04bf7-99cc-4e02-a656-a8bf6c8d837b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:42:27 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "acdc2293-d19c-4a66-9306-d9c7d5ccb0c5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "60370f86-239f-422e-8177-98c9ef094b17" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084258Z:60370f86-239f-422e-8177-98c9ef094b17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:42:58 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d2857939-3746-43f1-af83-2201918966d5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a3f895dd-9f9c-463c-acc7-d06a5b482fc6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084329Z:a3f895dd-9f9c-463c-acc7-d06a5b482fc6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:43:28 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c8bc596f-a542-4b69-b4cb-52e549b1741c" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3ebd3ee7-2e8a-4427-8124-13bec6f8a5d6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084359Z:3ebd3ee7-2e8a-4427-8124-13bec6f8a5d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:43:59 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2a223cbd-2cf0-482c-8ffa-b0ee1a494d6d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "cfae2a22-b24a-438d-a387-48a09d8c25a4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084430Z:cfae2a22-b24a-438d-a387-48a09d8c25a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:44:29 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e86980c8-ba76-4753-8bf5-54572af0f462" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4cadb6fa-3b44-4df6-95da-dd8daadd3916" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084501Z:4cadb6fa-3b44-4df6-95da-dd8daadd3916" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:45:00 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a447d9bc-8f57-4c8b-9f6d-a077cf032733" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9f0ebea5-e779-4135-8a1f-ed8e37b5d4e5" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084531Z:9f0ebea5-e779-4135-8a1f-ed8e37b5d4e5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:45:30 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "98c9787f-fa4b-4cb5-9a44-ec94329a4d9d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0c224b03-8514-4d1a-bb0a-89cf0e7a7b09" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084603Z:0c224b03-8514-4d1a-bb0a-89cf0e7a7b09" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:46:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "745ff478-5a40-455f-a130-4cbadfcf4be5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "1c524b43-7862-4e71-8f50-bb3e7a9f2b47" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084633Z:1c524b43-7862-4e71-8f50-bb3e7a9f2b47" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:46:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9c9b434d-be55-43ee-966f-96d3b3d80cd9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a5057622-43c4-45a4-bbcc-d249cee3cf5d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084704Z:a5057622-43c4-45a4-bbcc-d249cee3cf5d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:47:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8a118a77-cd50-495c-af7b-b97da93993d8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8f827bda-7ecf-4c9f-b33f-8efbe38bdace" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084734Z:8f827bda-7ecf-4c9f-b33f-8efbe38bdace" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:47:34 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "23987a54-3bfd-49bf-8a66-ed4618641641" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d7689b9b-e10f-4016-95ee-122a73ad6de5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084805Z:d7689b9b-e10f-4016-95ee-122a73ad6de5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:48:05 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "334ec59c-1107-48e1-b775-2443253d84c8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "aa0ad8fc-3f0e-47d0-b8cc-5aa3265c9ed9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084836Z:aa0ad8fc-3f0e-47d0-b8cc-5aa3265c9ed9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:48:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "871654a6-3862-46ea-903d-3b04fa60846f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "33f574ca-2595-4c82-8e3c-907a0092bcba" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084906Z:33f574ca-2595-4c82-8e3c-907a0092bcba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:49:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "db9ecc2e-8a2b-483c-898e-f2a2ec333827" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "89c2cf0a-6bdd-4950-ba1d-ec254932850f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T084937Z:89c2cf0a-6bdd-4950-ba1d-ec254932850f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:49:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b2bcec2e-4ccb-413a-ad32-27a00fbb2af3" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4d6d6e8b-60d4-4898-87fd-5d30dc14e16f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085007Z:4d6d6e8b-60d4-4898-87fd-5d30dc14e16f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:50:07 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e95a295e-ca9f-477a-8767-ade8ca7c3648" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3dfffc44-33ad-4eca-9944-aec994676bc7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085038Z:3dfffc44-33ad-4eca-9944-aec994676bc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:50:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1fdd7bf0-bbe4-4472-8c67-122adff231ac" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "783f898d-eff0-417b-80bf-3776484fb866" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085109Z:783f898d-eff0-417b-80bf-3776484fb866" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:51:08 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2e8a319f-3d87-4273-97b3-04404833ad66" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "9f2647fa-2e4b-4316-a7a6-2e0273c76fa4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085139Z:9f2647fa-2e4b-4316-a7a6-2e0273c76fa4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:51:39 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "261d2ccd-95a8-4c42-9830-dfed8df0f1af" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2b041651-31b9-47df-85de-99f064c3ad25" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "811a5067-d906-4fd5-af79-2292d24d1d97" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085140Z:811a5067-d906-4fd5-af79-2292d24d1d97" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:51:40 GMT" - ], - "Content-Length": [ - "2244" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959\",\r\n \"name\": \"hdi-ps-test1959\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1ddea05d-a2a3-4dd7-af23-1d1bb00bdf68\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"23033b162c9b4c969a82a6b5c7d80191\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T08:32:13.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1959-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1959.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3019.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.Storage/storageAccounts/storagepstest3019\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test1959\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8da57c99-07e3-4b28-8d24-79e2da82ae71" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "05f69512-192d-41f2-8e6f-ef15aa4dbb9f", - "d89cad61-568a-4b01-a9e8-050f7a4de39a", - "fec5885c-af7d-490a-ad56-9f929add7108", - "f113c8a3-48db-43dc-9f2f-a92106aaa785", - "c4d86183-b596-4ac3-ae97-6deec3968cea", - "584d5d09-ec93-4fc6-b41b-4849af4adb28", - "89fe8098-ec28-4251-854f-39fd3373e9b4", - "b57ba347-18e9-4ef6-a308-ca7a3f436c33", - "d58733ff-2fbe-43a8-a209-e5a96a1fd6d9", - "e68bf2ea-4f0e-465b-8a1e-a824949102d2", - "7e4d3347-99b6-4fd5-913d-f54a8c354ef0", - "0558a803-f248-4c28-9f5d-0f8a830662e6", - "2ea412ff-07fa-4883-bdee-03499a26998c", - "294f6692-d8cd-4580-b367-a48ccbb53754" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "b1dc9a53-f790-4132-bc65-2d1e62c4c002" - ], - "x-ms-correlation-request-id": [ - "b1dc9a53-f790-4132-bc65-2d1e62c4c002" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085146Z:b1dc9a53-f790-4132-bc65-2d1e62c4c002" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:51:46 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "280363" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.HDInsight/clusters/xinli1debugipsec\",\r\n \"name\": \"xinli1debugipsec\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"263aad4e-6765-495a-9ba6-c5edab28ef5a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a836521cad934fc89c517a90ae892a7a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-27T07:38:27.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1debugiphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.Storage/storageAccounts/xinli1debugiphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1debugipsec-2023-03-27t07-37-02-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.HDInsight/clusters/test-denyinbound\",\r\n \"name\": \"test-denyinbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Australia East\",\r\n \"etag\": \"17ac0a46-8e67-414f-bb3c-ca5c4bd35712\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6d2976b47ed470d9b5f11bb7d81db2b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-29T11:13:22.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdenyinbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Storage/storageAccounts/testdenyinbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-denyinbound-2023-03-29t11-04-30-897z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-outbount-cvrio4\",\r\n \"name\": \"hadoop-outbount-cvrio4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"b577a3fd-3386-4a5e-9149-a8ae7a809d12\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6fcf0aa36cce419da9a9e7222cf4533c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T12:55:12.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"192.168.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-outbount-cvrio4-2023-02-27t12-53-32-920z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-sentinel\",\r\n \"name\": \"hadoop-sentinel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"84ed899b-d6f7-481e-9976-f5859cc7ddce\",\r\n \"tags\": {\r\n \"SENTINAL\": \"DONTDELETE\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"053fc6fe2d3a4196b4ed8c5845b6a297\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-02T13:28:33.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-sentinel-2023-01-02t13-26-06-000z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdptestcluster1\",\r\n \"name\": \"hdptestcluster1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"6294e7eb-d942-4da0-bb22-69ac8aa8ab10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"711698d20f7d4e559b55785590fdc382\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T20:31:14.29\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdptestclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdptestclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdptestcluster1-2023-02-16t20-29-01-114z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.HDInsight/clusters/srinihadooptest\",\r\n \"name\": \"srinihadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"6799f8b5-f6b7-490b-bfce-c8e96c0a69d8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4a97d33a74354cb8b505314852fd67dc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T06:09:38.023\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinihadooptehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.Storage/storageAccounts/srinihadooptehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinihadooptest-2023-04-03t06-06-59-470z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumanatahivetest\",\r\n \"name\": \"sumanatahivetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"e0ab8abe-ea66-4786-a963-b8bd59cd68f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0752c11287947f6ad407dc35ef9f0a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T10:25:01.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 42\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumanatahivetest-2023-02-23t10-13-41-228z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantahadooptest\",\r\n \"name\": \"sumantahadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"3e2ef5dc-b06c-49f1-a0f5-1064c87c2904\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a3a347bee65443c5b4ffc02c295dca36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T06:32:06.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantahadooptestcluste-2023-03-24t06-28-54-846z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantatestsparkcluster\",\r\n \"name\": \"sumantatestsparkcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"eadbad16-940e-4ba1-8d10-e35b31b3038c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7571860162e244c9ac5f369c6a6182bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-26T02:19:04.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantatestsparkcluster-2023-02-26t02-15-03-734z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryahadoop\",\r\n \"name\": \"suryahadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"efc66412-384f-478b-98b8-b9c5370b1a9e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b6b32d28d9e4bcf81e16dcceb9d7c90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T09:31:39.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryahadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryahadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryahadoop-2023-02-16t09-30-23-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryaspark\",\r\n \"name\": \"suryaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"4e2c5b28-0661-4614-9557-60741cb699d4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f34179e0af574bd990a4a80e0f850420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T09:51:40.6\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryaspark-2023-02-23t09-49-41-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.HDInsight/clusters/andarmod-march2023\",\r\n \"name\": \"andarmod-march2023\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58889b01-8efb-45b7-a3da-3c1e8eea158f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b47d639b35f94be4955cc2dec8b2320d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-07T16:54:08.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodmarchhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.Storage/storageAccounts/andarmodmarchhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-march2023-2023-03-07t16-51-41-821z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyanipsectest1\",\r\n \"name\": \"chaoyanipsectest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e788daa3-aa02-49d3-b558-29403e44da93\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.5.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2207131812.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"367ac0f996a0421bbce329925e291b05\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-11T08:43:11.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyanipsecthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyanipsecthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyanipsectest-2022-08-11t08-39-02-672z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyantesting1\",\r\n \"name\": \"chaoyantesting1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"29167e66-afe2-4c5f-b8b7-00b165d9a72e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"43fb4c0684964cc09e2bb85da780e87b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-05-19T05:33:22.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyantestinhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyantestinhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyantesting-2022-05-19t05-31-45-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalhbasecluster\",\r\n \"name\": \"faisalhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c2d260b3-7c88-4293-a197-3bd01ba5cba9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"fdd6f2f04e214787a91ab03d8c70e43c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-09T18:59:29.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"Execution of the following scripts failed :- Custom\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalhbasecluster-2023-02-09t18-57-54-885z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalkafkacluster\",\r\n \"name\": \"faisalkafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6a22e8d4-9a64-4f7c-81e0-dbc10fdc4396\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"f96f014c44104e059b9b76cdf5786212\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:32:47.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalkafkaclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalkafkaclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalkafkaclist-2023-02-15t17-31-20-101z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsparkthreedotone\",\r\n \"name\": \"faisalsparkthreedotone\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"28e18c5f-d479-4420-a009-f239f0866d77\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"08a08b13feb040f695fe823f9cd4ce0b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T15:01:25.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsparkthhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsparkthhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsparkthreedotone-2023-02-16t15-00-02-589z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprk3dot1\",\r\n \"name\": \"faisalsprk3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3e344fb9-ae16-4de5-9d8a-88f3492631f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b19b209e520840a798c9fdf0853ca32d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-14T17:03:17.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprk3dohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprk3dohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprk3do-2023-02-14t17-01-00-509z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprkcluster3dot1\",\r\n \"name\": \"faisalsprkcluster3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"293ccb46-de93-4a32-a7db-1b7e7354530b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"40de045ed14244048ed41c11aa55ce6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:31:11.627\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprkcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprkcluster-2023-02-15t17-29-17-755z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.HDInsight/clusters/for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"name\": \"for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fbca8ad-f6d9-459a-85de-2d41bbc13acd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"218204ad46f5479f8700266ad08536ab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T02:22:59.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"forhditestspahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.Storage/storageAccounts/forhditestspahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"forhdi-test-spark-24-do-2023-02-15t02-20-51-216z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959\",\r\n \"name\": \"hdi-ps-test1959\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1ddea05d-a2a3-4dd7-af23-1d1bb00bdf68\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"23033b162c9b4c969a82a6b5c7d80191\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T08:32:13.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1959-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1959.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3019.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.Storage/storageAccounts/storagepstest3019\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test1959\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.HDInsight/clusters/hdi-spark-test-eastus\",\r\n \"name\": \"hdi-spark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"de91a5d7-3f91-49ad-a023-99cceacd47f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"46ee674f530e4c6eac0bf40ca8fa6b13\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T18:25:18.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-spark-test-eastus-2023-02-23t18-23-27-300z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.HDInsight/clusters/jacky-spart-cluster\",\r\n \"name\": \"jacky-spart-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f93e581f-303e-40f6-aa2e-e2af037d2015\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ed0cbe2a53f6451a9a9a51943b3b7e4c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 1,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:34:56.1\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jackyspartcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.Storage/storageAccounts/jackyspartcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jacky-spart-cluster-2023-03-10t07-31-05-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/kafkajartest\",\r\n \"name\": \"kafkajartest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5dba8150-35d1-4431-9a33-1f6e645fb976\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"afa6e9ba6cb04b3dbb487637e4b4971c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T15:56:24.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafkajartesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/kafkajartesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafkajartest-2023-03-24t15-54-14-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/rampuvhbasecluster\",\r\n \"name\": \"rampuvhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"112945a7-a3d1-4600-8ae7-1d8f03309d10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"cce431c503424ea5a3c0d103329b7542\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-17T22:57:31.78\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rampuvhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/rampuvhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"rampuvhbasecluster-2023-01-17t22-44-44-409z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.HDInsight/clusters/shankarhadooptestcluster\",\r\n \"name\": \"shankarhadooptestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06e26256-25d4-4fba-9648-30f7078f0840\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c164b1edd07f4b3fbb0787d101784942\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T01:28:16.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shankarhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shankarhadoop-2023-03-23t01-23-49-690z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n },\r\n {\r\n \"name\": \"shankarhadoophdistorage2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark2d4\",\r\n \"name\": \"spark2d4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1153c11a-2a85-46e7-a734-52015dc5868d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c883f1ec21bc4c849523971654062efd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T07:42:07.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark2d4hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark2d4hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark2d4-2023-02-15t07-39-53-493z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark3d1\",\r\n \"name\": \"spark3d1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4684704b-9b54-4c86-af1c-7ef79b87b2aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7e791962c38f418b9474926b349621df\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-08T09:41:23.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark3d1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark3d1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark3d1-2023-03-08t09-39-29-001z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.HDInsight/clusters/sparkclustertest\",\r\n \"name\": \"sparkclustertest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8b31425f-33d6-4fb4-a949-8ecf8ab6931b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a49afaa3cee6473ea18436341998a8ca\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T05:40:39.997\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparkclusterteststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.Storage/storageAccounts/sparkclusterteststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparkclustertest-2023-02-20t05-37-29-162z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/sparktezviewtesting\",\r\n \"name\": \"sparktezviewtesting\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"51679a92-9088-4c04-a123-98b0d47a2f1f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"52575b0c9da14a91b6b0164b881fc0bd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T21:40:20.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparktezviewthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/sparktezviewthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparktezviewtesting-2023-04-03t21-38-23-344z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.HDInsight/clusters/sultan-hdi-cluster-1\",\r\n \"name\": \"sultan-hdi-cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8c758461-3e41-4c18-a9f3-5ce77e05a7bf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"63513e3e784441259bb73ad58c602241\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T15:51:03.267\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sultanhdiclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Storage/storageAccounts/sultanhdiclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sultan-hdi-cluster-2023-04-03t15-44-34-333z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.HDInsight/clusters/testhadoopv-rchandekar\",\r\n \"name\": \"testhadoopv-rchandekar\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"517c95d3-0333-442e-90fc-49c3aa0474c5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbdf8584bd7146bfa881a9f6d0edb126\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-19T09:11:15.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhadoopvrchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.Storage/storageAccounts/testhadoopvrchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhadoopv-rchandekar-2023-02-19t09-08-45-240z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/testsprk1\",\r\n \"name\": \"testsprk1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"80c39751-b509-48cc-b33b-f426446131c6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"00161d115cb043148e4ee70f3480841a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-22T15:55:55.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsprk1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/testsprk1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testsprk1-2023-03-22t15-53-40-199z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut_res_group_extremelengthextremelengthextremelengthextremelengthextremelengthextremelen/providers/Microsoft.HDInsight/clusters/wut-cluster-extremelengthextremelengt1\",\r\n \"name\": \"wut-cluster-extremelengthextremelengt1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ef9588d7-7391-4786-ac73-8a3bd685c737\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3438ce92023a43bfb69f13dd19abe1a1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-03T07:59:34.263\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-cluster-extremeleng-2023-03-03t07-50-04-213z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi1\",\r\n \"name\": \"wut-msi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"cbe06749-73db-43d4-bc7d-c659f66fae76\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3ab1d1b9f8f74bfe9e47b7f47bb2d484\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T10:21:20.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi1-2023-02-16t10-18-25-176z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi-with-disk\",\r\n \"name\": \"wut-msi-with-disk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"abce6322-b4bf-459b-8bf2-76d00b710b0b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"463aa4295be340609178d8503f319c5e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T07:17:39.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi-with-disk-2023-02-20t07-16-09-847z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1adls04191\",\r\n \"name\": \"x1adls04191\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b07b7393-e919-4fa3-a498-53a294c6c378\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"8e19fc8c328c4078aeaee5eead0dfba3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-04-19T05:40:17.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1adlsgen20419.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1adlsgen20419\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/x1usermsi0924\",\r\n \"key\": null,\r\n \"fileSystem\": \"x1adls04191fs\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/microsoft.managedidentity/userassignedidentities/x1usermsi0924\": {\r\n \"principalId\": \"048a9639-b7e1-4671-b9aa-2bab056c5b3b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.HDInsight/clusters/xinli1agentdebug\",\r\n \"name\": \"xinli1agentdebug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f2a8f840-0c8b-4588-af98-c0471c75f525\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e231aeff71145208dfd23b216e5167c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-28T02:48:54.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.39.1.25\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1agentdehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Storage/storageAccounts/xinli1agentdehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1agentdebug-2023-02-28t02-46-13-138z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-ssh-test\",\r\n \"name\": \"yalu-ssh-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"11482072-35bb-4f70-8c7c-d83fbd365235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"535fba725345441f84453158ed58bb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-03-28T05:51:27.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusshtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yalusshtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-ssh-test-2022-03-28t05-50-12-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yaluversiontest\",\r\n \"name\": \"yaluversiontest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8a084b25-3fdf-41dc-8524-ff314d5736eb\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2207131812.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"165dba2239b4435fb837bbb28cd94562\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-26T04:01:17.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluversiontehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluversiontehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yaluversiontest-2022-08-26t03-59-45-628z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweiuseprod\",\r\n \"name\": \"ziweiuseprod\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"a1c924a7-ef70-424c-a707-3acea34ed284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f5ed2b902a8c4148aaa06b2083c5fcf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-20T13:26:43.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweiuseprodhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweiuseprodhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweiuseprod-2022-02-20\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdihiveinteractivequery\",\r\n \"name\": \"hdihiveinteractivequery\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"e0406da8-4e88-47be-9046-bd73cc55730a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b630111eea894ea2b83b9927fd696708\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-06T19:40:13.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 18\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdihiveinterahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdihiveinterahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdihiveinteractivequery-2023-01-06t19-33-23-190z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.HDInsight/clusters/jairokafkacluster\",\r\n \"name\": \"jairokafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"72468a3d-3ff2-41a8-a319-0380807b9fda\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e4d6eaf7f2a84e9c8f73ecf5f916659c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T17:58:43.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jairokafkacluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.Storage/storageAccounts/jairokafkacluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jairokafkacluster-2023-02-27t17-54-29-913z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/zzzz-shangwei-test-pe\",\r\n \"name\": \"zzzz-shangwei-test-pe\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bd656217-7df4-4dbd-8767-deb0aa1007b5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2208310943.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"01bc6a206aea46a0844a6ba5e4c1e4ce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-09-28T11:53:42.887\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-test-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"asd-shangwei-test-pe-2022-09-28t11-39-57-881z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-test-msi\": {\r\n \"principalId\": \"2f5a5662-86b4-4c5f-a3b8-eba4db9b5ee0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.HDInsight/clusters/hiveserverinteractivetestfeb20\",\r\n \"name\": \"hiveserverinteractivetestfeb20\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"6cabab4b-9e77-4a77-b9f6-e36fbb52d701\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f3518a9df252426a87aaabe174d34549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T04:55:42.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hiveserverinthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.Storage/storageAccounts/hiveserverinthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hiveserverinte-2023-02-20t04-52-17-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.HDInsight/clusters/shangwei-poc-hdi\",\r\n \"name\": \"shangwei-poc-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4dc7b507-2bf7-47dd-baf5-fe0fd82a7718\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e97453096a1423fae7bf95c28faf715\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T13:24:27.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipochdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Storage/storageAccounts/shangweipochdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-poc-hdi-2023-02-15t13-22-36-476z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.HDInsight/clusters/test-outbound\",\r\n \"name\": \"test-outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"6feb5fe3-fa25-4116-b17b-4d0771b02ff3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"aa331a83baf348149ce4f24b5ab04f7e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-14T09:42:47.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.3.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsheinoutbound.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Storage/storageAccounts/testsheinoutbound\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-outbound-2023-03-14t09-36-58-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweinewregion\",\r\n \"name\": \"ziweinewregion\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany North\",\r\n \"etag\": \"fcd8e6b6-92bf-4c33-a1ae-7fddaec7a588\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b4a777151b6a4402bc22c9d9224d01a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-06-09T06:27:54.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweinewregiohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweinewregiohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweinewregion-2022-06-09t06-26-13-110z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip1\",\r\n \"name\": \"wuttesttip1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"c643f24b-ab3b-446a-a944-cc22976b6d5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6878300ba5904fee8d37ea4c49fd657e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T08:05:36.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220830tip1\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip2\",\r\n \"name\": \"wuttesttip2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c6a1e318-6b1a-4ee7-9678-3c45a460054a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5022c17e86c04151b52efa226c781236\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T09:04:25.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220831tip2\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestec2023021501\",\r\n \"name\": \"zzytestec2023021501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"f80298a0-42c9-45fb-bcbd-c21949a368e6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302140238.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab068287b1c54e2e86f3cd009a2994f7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-02-15T05:51:53.337\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestec2023hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestec2023hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestec20230214-2023-02-15t05-48-55-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytesteccert003\",\r\n \"name\": \"zzytesteccert003\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"717d837f-3ba3-4b6a-8316-488824d78c8a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"926003a85ef746a79582414d9d0f8aef\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-01-30T08:53:33.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesteccerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesteccerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytesteccert003-2023-01-30t08-52-19-685z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.HDInsight/clusters/alaw-hadoop\",\r\n \"name\": \"alaw-hadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"a644024e-45da-4b23-8347-7ccadb095d46\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"acf2f5f3b77d49eda85a0d2ba1854d3e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-02T02:05:48.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"alawhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.Storage/storageAccounts/alawhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"alaw-hadoop-2023-03-02t02-05-00-094z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy12testclimsgraph\",\r\n \"name\": \"zzy12testclimsgraph\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b1954f3b-435e-4d0e-8129-4e82dd07e189\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"30cbd2b68eaf4d899a1f88852ae30d0a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-05-18T04:00:46.723\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://lanjuntesthdihdistorage.blob.core.windows.net/ssh/changecredentials.sh. Exception message: Script URI cannot be retrieved correctly. HTTP Status code: Conflict.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy12testclimsgraph\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-01\",\r\n \"name\": \"shiyi-pl-hadoop-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29990d6a-6caa-4b11-82f6-30fea35a6fc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c2e3babae5ec4ee08a36c2c90894eced\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:41:45.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 8\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa01.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa01\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-01\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-02\",\r\n \"name\": \"shiyi-pl-hadoop-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"fdf7f0f4-800a-45fc-8b4f-5357b8b1c3d2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2fd6536c8ce148bda284f73d7444d400\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f8\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:46:03.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-03\",\r\n \"name\": \"shiyi-pl-hadoop-03\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"3b96fb85-fa13-40f2-8abe-901ca94902e0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"11f0972bacd44965a373acd717924ecd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f16\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:14:35.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa03.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa03\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-03\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-04\",\r\n \"name\": \"shiyi-pl-hadoop-04\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"83d4b2bd-a438-4884-b578-07fd80427e3d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c1fc40e15a2d41dfab258e833e6ba850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:16:52.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa04.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa04\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-04\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-05\",\r\n \"name\": \"shiyi-pl-hadoop-05\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"c4b9f731-3773-4ff7-b484-5b0ff3394ff7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c60d7a208817420d8320be7c677ab2f2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:24:54.443\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 128\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa05.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa05\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-05\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-06\",\r\n \"name\": \"shiyi-pl-hadoop-06\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"302f52c5-59fc-4636-938d-d491fe9920fc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8247d20bc8e448279746c2b62ce805b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:19:35.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa06.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa06\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-06\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-07\",\r\n \"name\": \"shiyi-pl-hadoop-07\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f4ef091a-a24c-417c-9962-bcfc8b02de8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"239c19a2c1554ed7862044e0e4703f22\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:37:41.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa07.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa07\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-07\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-08\",\r\n \"name\": \"shiyi-pl-hadoop-08\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f76467ac-9a10-4174-b85a-e96845254047\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"d8fda12bd8b444b186f37dea68622d31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:39:46.89\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa08.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa08\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-08\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-09\",\r\n \"name\": \"shiyi-pl-hadoop-09\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29bfd3d6-d1bb-4b99-9bce-f4c149495311\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b0602bd423544d729d56f6dd50a5fe78\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:15.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa09.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa09\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-09\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-10\",\r\n \"name\": \"shiyi-pl-hadoop-10\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8e41f979-734a-47e5-a6a6-ef6a80a2a9df\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1b548cbfb8b24d46a360df3d6ccf07c8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:29.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa10.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa10\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-10\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-11\",\r\n \"name\": \"shiyi-pl-hadoop-11\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"d6696882-f688-4e87-bd74-b7e51b809d79\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4c8e5b20edca4aef98d5590715a9dd2c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:10.573\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa11.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa11\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-11\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-12\",\r\n \"name\": \"shiyi-pl-hadoop-12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7620fa29-cc62-4974-8540-bdfa2dc5f878\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9d2d4967c7a14a22ae8718988b6caa2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:25.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa12.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa12\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-12\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hbase-01\",\r\n \"name\": \"shiyi-pl-hbase-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8db0b47e-ec70-47c0-bfc8-1dec22d35b87\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"3b5e5a78385a4c0da678b1d30c0ca0b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:03:24.73\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 22\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhbase0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.Storage/storageAccounts/shiyiplhbase0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hbase-01-2023-03-20t02-57-30-182z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.HDInsight/clusters/shiyi-pl-hdp-3\",\r\n \"name\": \"shiyi-pl-hdp-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7d83c57b-727d-4610-b944-76bed3845d6e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"75d7946e29ae42c0b5be6919c1569cf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:30:56.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhdp3hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.Storage/storageAccounts/shiyiplhdp3hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hdp-3-2023-03-10t07-28-45-657z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hive-01\",\r\n \"name\": \"shiyi-pl-hive-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"1614b7e9-b8f2-439e-a31c-a9c568a69f39\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"e7f7e90b1ab34b6a8ab3d5475f3f3eb6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:10:23.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhive01hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.Storage/storageAccounts/shiyiplhive01hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hive-01-2023-03-20t03-06-54-850z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-01\",\r\n \"name\": \"shiyi-pl-kafka-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8f76ee5e-304f-4833-a2a0-725661b34f13\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"c8f68a7bb80b4f7b9dc5c2033af2da38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T05:44:19.98\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafka0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.Storage/storageAccounts/shiyiplkafka0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-01-2023-03-20t05-41-36-217z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-02\",\r\n \"name\": \"shiyi-pl-kafka-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"014feb11-1c70-4766-85b7-91f10423540d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"kafka\",\r\n \"componentVersion\": {\r\n \"kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"45d348febd6440b89502cb184a0ce201\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T09:33:10.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafkasa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.Storage/storageAccounts/shiyiplkafkasa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7252/providers/Microsoft.HDInsight/clusters/hdi-ps-test1959?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MTk1OT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8da57c99-07e3-4b28-8d24-79e2da82ae71" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2968,40 +162,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/f885c805-c2b0-4bca-8687-1810bb163635-0-r?api-version=2021-06-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/c27a93c9-005d-49f8-a45a-bb1cf8eeba91?monitor=true&api-version=2017-10-01" ], "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/f885c805-c2b0-4bca-8687-1810bb163635-0-r?api-version=2021-06-01" + "3" ], "x-ms-request-id": [ - "5d84465b-f203-409a-a3a4-dfa6df90a677" + "844c5222-7d35-49b5-bb5e-ebc8d2bc482f" ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3cc97c3f-be99-4e0c-a841-a218c072ec77" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085148Z:3cc97c3f-be99-4e0c-a841-a218c072ec77" + "x-ms-correlation-request-id": [ + "8de605c8-186f-4eb9-acd6-af59b72ebc24" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230726T013259Z:8de605c8-186f-4eb9-acd6-af59b72ebc24" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:51:48 GMT" + "Wed, 26 Jul 2023 01:32:58 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" ], "Expires": [ "-1" @@ -3014,18 +205,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/f885c805-c2b0-4bca-8687-1810bb163635-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvZjg4NWM4MDUtYzJiMC00YmNhLTg2ODctMTgxMGJiMTYzNjM1LTAtcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/c27a93c9-005d-49f8-a45a-bb1cf8eeba91?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy9jMjdhOTNjOS0wMDVkLTQ5ZjgtYTQ1YS1iYjFjZjhlZWJhOTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "8da57c99-07e3-4b28-8d24-79e2da82ae71" - ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3037,58 +225,58 @@ "no-cache" ], "x-ms-request-id": [ - "0df7175f-522d-4db6-b8ff-846765e8b0c3" - ], - "x-ms-hdi-served-by": [ - "eastus" + "b487815b-39d0-4f35-8a5a-e4b38809ceeb" ], - "x-ms-correlation-request-id": [ - "c527ab9f-f99d-45da-8c65-af342a0baf0f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085248Z:c527ab9f-f99d-45da-8c65-af342a0baf0f" + "x-ms-correlation-request-id": [ + "961442b8-9d3f-42b5-a706-50bbf0104a7a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230726T013302Z:961442b8-9d3f-42b5-a706-50bbf0104a7a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:52:48 GMT" + "Wed, 26 Jul 2023 01:33:02 GMT" ], "Content-Length": [ - "22" + "1393" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7825/providers/Microsoft.Storage/storageAccounts/storagepstest4677\",\r\n \"name\": \"storagepstest4677\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-26T01:32:37.487704Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-26T01:32:37.487704Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-26T01:32:37.347074Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest4677.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest4677.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest4677.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest4677.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest4677-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest4677-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest4677-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/f885c805-c2b0-4bca-8687-1810bb163635-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy9mODg1YzgwNS1jMmIwLTRiY2EtODY4Ny0xODEwYmIxNjM2MzUtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7825/providers/Microsoft.Storage/storageAccounts/storagepstest4677/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDQ2NzcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "8da57c99-07e3-4b28-8d24-79e2da82ae71" + "e8a280eb-5a0f-4837-860e-aef4ae3e1b61" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3100,46 +288,49 @@ "no-cache" ], "x-ms-request-id": [ - "e8c92de6-feaa-4942-87fc-f124d1600d7a" + "e5931d64-2188-4573-bc90-c55b6ea94737" ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3b729638-3cd8-4ee4-879b-bc5bb90f3906" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085248Z:3b729638-3cd8-4ee4-879b-bc5bb90f3906" + "x-ms-correlation-request-id": [ + "5ddb927e-f203-400f-9df1-67a1fa1c79a4" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230726T013302Z:5ddb927e-f203-400f-9df1-67a1fa1c79a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:52:48 GMT" + "Wed, 26 Jul 2023 01:33:02 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7252?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3MjUyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7825?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3ODI1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "00af5349-745a-4ce3-be42-7e8a8884265b" + "fab17c7a-032c-4a19-afae-a33b9579a8a5" ], "Accept-Language": [ "en-US" @@ -3147,8 +338,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3160,7 +351,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3169,13 +360,13 @@ "14999" ], "x-ms-request-id": [ - "82673d9e-5015-4b04-a0ea-4f96547887c4" + "78ad2b82-aec1-4db7-890a-d3807e60bda8" ], "x-ms-correlation-request-id": [ - "82673d9e-5015-4b04-a0ea-4f96547887c4" + "78ad2b82-aec1-4db7-890a-d3807e60bda8" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T085250Z:82673d9e-5015-4b04-a0ea-4f96547887c4" + "JAPANEAST:20230726T015249Z:78ad2b82-aec1-4db7-890a-d3807e60bda8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3184,7 +375,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:52:49 GMT" + "Wed, 26 Jul 2023 01:52:49 GMT" ], "Expires": [ "-1" @@ -3197,15 +388,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0TWpVdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3217,7 +408,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3226,13 +417,13 @@ "11999" ], "x-ms-request-id": [ - "078b1d6d-0394-47e9-a790-bc7421ad3245" + "c234e02a-d901-4183-b834-007d751da54a" ], "x-ms-correlation-request-id": [ - "078b1d6d-0394-47e9-a790-bc7421ad3245" + "c234e02a-d901-4183-b834-007d751da54a" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T085305Z:078b1d6d-0394-47e9-a790-bc7421ad3245" + "JAPANEAST:20230726T015304Z:c234e02a-d901-4183-b834-007d751da54a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3241,7 +432,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:53:04 GMT" + "Wed, 26 Jul 2023 01:53:04 GMT" ], "Expires": [ "-1" @@ -3254,15 +445,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0TWpVdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3274,7 +465,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3283,13 +474,13 @@ "11998" ], "x-ms-request-id": [ - "8565eef8-64db-4e8e-a15b-610c0a444930" + "a22a283e-858d-4cec-9865-13676fbd7147" ], "x-ms-correlation-request-id": [ - "8565eef8-64db-4e8e-a15b-610c0a444930" + "a22a283e-858d-4cec-9865-13676fbd7147" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T085320Z:8565eef8-64db-4e8e-a15b-610c0a444930" + "JAPANEAST:20230726T015320Z:a22a283e-858d-4cec-9865-13676fbd7147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3298,7 +489,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:53:20 GMT" + "Wed, 26 Jul 2023 01:53:19 GMT" ], "Expires": [ "-1" @@ -3311,15 +502,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0TWpVdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3331,7 +522,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3340,13 +531,13 @@ "11997" ], "x-ms-request-id": [ - "115b2a01-0a9e-41c1-94da-1fc0e7f516f0" + "820fb5c3-b82c-4910-be88-7d629a11f38d" ], "x-ms-correlation-request-id": [ - "115b2a01-0a9e-41c1-94da-1fc0e7f516f0" + "820fb5c3-b82c-4910-be88-7d629a11f38d" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T085335Z:115b2a01-0a9e-41c1-94da-1fc0e7f516f0" + "JAPANEAST:20230726T015335Z:820fb5c3-b82c-4910-be88-7d629a11f38d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3355,7 +546,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:53:35 GMT" + "Wed, 26 Jul 2023 01:53:35 GMT" ], "Expires": [ "-1" @@ -3368,15 +559,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0TWpVdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3388,7 +579,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3397,13 +588,13 @@ "11996" ], "x-ms-request-id": [ - "f5d4f1d0-eb91-4eb6-852a-30711e550cbf" + "d7a62f3a-9097-4cb5-90ee-0b712905a11e" ], "x-ms-correlation-request-id": [ - "f5d4f1d0-eb91-4eb6-852a-30711e550cbf" + "d7a62f3a-9097-4cb5-90ee-0b712905a11e" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T085351Z:f5d4f1d0-eb91-4eb6-852a-30711e550cbf" + "JAPANEAST:20230726T015350Z:d7a62f3a-9097-4cb5-90ee-0b712905a11e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3412,7 +603,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:53:50 GMT" + "Wed, 26 Jul 2023 01:53:50 GMT" ], "Expires": [ "-1" @@ -3425,15 +616,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0TWpVdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3444,245 +635,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "afa1146b-346b-48d2-812c-25a436f0c1a5" - ], - "x-ms-correlation-request-id": [ - "afa1146b-346b-48d2-812c-25a436f0c1a5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085406Z:afa1146b-346b-48d2-812c-25a436f0c1a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:54:06 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "574a2562-b54b-4f6e-924a-ff4ab3e668df" - ], - "x-ms-correlation-request-id": [ - "574a2562-b54b-4f6e-924a-ff4ab3e668df" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085421Z:574a2562-b54b-4f6e-924a-ff4ab3e668df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:54:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "5a0b3687-8512-42f8-ac0e-0e4683c868ff" - ], - "x-ms-correlation-request-id": [ - "5a0b3687-8512-42f8-ac0e-0e4683c868ff" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085436Z:5a0b3687-8512-42f8-ac0e-0e4683c868ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:54:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "ea192609-45d5-4ffa-8dcb-b430139a95ed" - ], - "x-ms-correlation-request-id": [ - "ea192609-45d5-4ffa-8dcb-b430139a95ed" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T085451Z:ea192609-45d5-4ffa-8dcb-b430139a95ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 08:54:51 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "6006213c-7c9e-42fc-986e-9fb26a106657" + "467ab142-80fa-4fe9-a8ef-754b8384a1af" ], "x-ms-correlation-request-id": [ - "6006213c-7c9e-42fc-986e-9fb26a106657" + "467ab142-80fa-4fe9-a8ef-754b8384a1af" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T085507Z:6006213c-7c9e-42fc-986e-9fb26a106657" + "JAPANEAST:20230726T015405Z:467ab142-80fa-4fe9-a8ef-754b8384a1af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3691,7 +654,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:55:06 GMT" + "Wed, 26 Jul 2023 01:54:05 GMT" ], "Expires": [ "-1" @@ -3704,15 +667,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDcyNTItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGN5TlRJdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc4MjUtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM0TWpVdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3724,16 +687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "b06b49e8-93f9-4ce9-96e3-305ce8d274d3" + "568a0f01-0ce5-4981-a8fa-384be19a8a89" ], "x-ms-correlation-request-id": [ - "b06b49e8-93f9-4ce9-96e3-305ce8d274d3" + "568a0f01-0ce5-4981-a8fa-384be19a8a89" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T085507Z:b06b49e8-93f9-4ce9-96e3-305ce8d274d3" + "JAPANEAST:20230726T015405Z:568a0f01-0ce5-4981-a8fa-384be19a8a89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3742,7 +705,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 08:55:06 GMT" + "Wed, 26 Jul 2023 01:54:05 GMT" ], "Expires": [ "-1" @@ -3757,9 +720,9 @@ ], "Names": { "Test-CreateClusterWithLoadBasedAutoscale": [ - "hdi-ps-test1959", - "group-ps-test7252", - "storagepstest3019" + "hdi-ps-test2829", + "group-ps-test7825", + "storagepstest4677" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithPrivateLinkConfiguration.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithPrivateLinkConfiguration.json index 3234aa8c5963..195f591e40ad 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithPrivateLinkConfiguration.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithPrivateLinkConfiguration.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4565?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3719?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzNzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fd3ed784-ac01-4e2d-840a-23b69c4215fc" + "ac0a8b77-e11d-4e3e-92c1-66d4d4c613ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "3f8e9b01-d2d9-47a2-bc3c-5b833c48ed40" + "cf87c083-4b75-4e5b-b043-cd43e3d74002" ], "x-ms-correlation-request-id": [ - "3f8e9b01-d2d9-47a2-bc3c-5b833c48ed40" + "cf87c083-4b75-4e5b-b043-cd43e3d74002" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140134Z:3f8e9b01-d2d9-47a2-bc3c-5b833c48ed40" + "JAPANEAST:20230728T012612Z:cf87c083-4b75-4e5b-b043-cd43e3d74002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:01:34 GMT" + "Fri, 28 Jul 2023 01:26:12 GMT" ], "Content-Length": [ - "195" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565\",\r\n \"name\": \"group-ps-test4565\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3719\",\r\n \"name\": \"group-ps-test3719\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.Storage/storageAccounts/storagepstest7899?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDc4OTk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3719/providers/Microsoft.Storage/storageAccounts/storagepstest5345?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzNzE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDUzNDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7a0916b-87b9-459d-a071-6439ecd05cec" + "c9792fe3-4a89-432c-8970-b1c5b4c7fa80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "110" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/0960145f-973b-4bcc-9c1a-39b1ca2027da?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/8cd99f61-63c3-44a7-b7bd-39e0a8a77d5b?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "0960145f-973b-4bcc-9c1a-39b1ca2027da" + "8cd99f61-63c3-44a7-b7bd-39e0a8a77d5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "380c5f31-b83e-43d6-a16b-6ff53731608a" + "90c87306-0f9a-4287-bf9d-6c020bda1d0d" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140140Z:380c5f31-b83e-43d6-a16b-6ff53731608a" + "JAPANEAST:20230728T012619Z:90c87306-0f9a-4287-bf9d-6c020bda1d0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:01:40 GMT" + "Fri, 28 Jul 2023 01:26:18 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,3021 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/0960145f-973b-4bcc-9c1a-39b1ca2027da?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zLzA5NjAxNDVmLTk3M2ItNGJjYy05YzFhLTM5YjFjYTIwMjdkYT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/8cd99f61-63c3-44a7-b7bd-39e0a8a77d5b?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy84Y2Q5OWY2MS02M2MzLTQ0YTctYjdiZC0zOWUwYThhNzdkNWI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "45a04ceb-9971-4e19-8673-669cba4899af" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "063144d2-3ea0-4cae-b141-e598909f26f9" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140158Z:063144d2-3ea0-4cae-b141-e598909f26f9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:01:57 GMT" - ], - "Content-Length": [ - "1408" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.Storage/storageAccounts/storagepstest7899\",\r\n \"name\": \"storagepstest7899\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-10-09T14:01:39.278477Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-10-09T14:01:39.278477Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-10-09T14:01:39.1691371Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7899.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7899.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7899.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest7899.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7899-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7899-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7899-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.Storage/storageAccounts/storagepstest7899/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDc4OTkvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f0a82080-e848-47b1-b57b-a536dccdc8ef" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b221785f-76ec-4e12-9c29-4a42505f4c48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "36959eda-b75e-4091-b8ab-1817da647831" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140158Z:36959eda-b75e-4091-b8ab-1817da647831" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:01:57 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"oaWDgK+ziABIsWXGCuqaw5zOfTUjndp0tdcWvzWbgjkS5OtvYrXlgdeX914/B0OQcjVF+DatHrcwGGQ+No7Gag==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"x1cAz8bPg5HGU+/k5PhnlRGLU2LmPMEIHdm2++ZvWXucIFaEnI39YpFPS6hRoW+IoO9GaGB/y1C3HPl3Ini7Uw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9iaWxsaW5nU3BlY3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1b8bca2e-b767-4d67-a3a0-4af27bb5cee2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e09750bc-55db-4768-ae3f-aafa24d371ce" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140209Z:e09750bc-55db-4768-ae3f-aafa24d371ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:02:08 GMT" - ], - "Content-Length": [ - "117423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A10\",\r\n \"A11\",\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"A8\",\r\n \"A9\",\r\n \"G1\",\r\n \"G2\",\r\n \"G3\",\r\n \"G4\",\r\n \"G5\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E16S_V3\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E32S_V3\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E4S_V3\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E8S_V3\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_G1\",\r\n \"STANDARD_G2\",\r\n \"STANDARD_G3\",\r\n \"STANDARD_G4\",\r\n \"STANDARD_G5\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\",\r\n \"STANDARD_NC24\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E16s_v3\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E32s_v3\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E4s_v3\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E8s_v3\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\",\r\n \"3.6\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A10\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A10 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A11 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A9 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16S_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E16s_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 274878,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32S_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E32s_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 549756,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E4S_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E4s_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 68720,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E8S_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E8s_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 137439,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G1(2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"STANDARD_G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"STANDARD_G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"STANDARD_G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"STANDARD_G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_NC24\",\r\n \"cores\": 24,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_NC24 (24 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1474560,\r\n \"webWorkerResourceDiskSizeInMb\": 1474560\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"South Central US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7899.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test905\",\r\n \"key\": \"oaWDgK+ziABIsWXGCuqaw5zOfTUjndp0tdcWvzWbgjkS5OtvYrXlgdeX914/B0OQcjVF+DatHrcwGGQ+No7Gag==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.Storage/storageAccounts/storagepstest7899\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"name\": \"plconfig\",\r\n \"properties\": {\r\n \"groupId\": \"headnode\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"primary\": true,\r\n \"privateIPAllocationMethod\": \"dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "4080" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"9783e002-06ff-430b-bd70-2110215197c0\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "749de4f0-dd14-4656-9346-0d383d079511" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "db639da3-d017-4eb7-8838-f9c77291fc4c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140221Z:db639da3-d017-4eb7-8838-f9c77291fc4c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:02:21 GMT" - ], - "Content-Length": [ - "4035" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905\",\r\n \"name\": \"hdi-ps-test905\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9783e002-06ff-430b-bd70-2110215197c0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"b6f102db08d844968b5c07f1bef5ccf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-09T14:02:20.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7899.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.Storage/storageAccounts/storagepstest7899\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test905\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/privateLinkConfigurations/plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateLinkConfigurations\",\r\n \"name\": \"plconfig\",\r\n \"properties\": {\r\n \"provisioningState\": \"InProgress\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/privateLinkConfigurations/plconfig/ipConfigurations/ipconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateLinkConfigurations/ipConfigurations\",\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"provisioningState\": \"InProgress\",\r\n \"primary\": true,\r\n \"privateIPAllocationMethod\": \"dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"groupId\": \"headnode\"\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d8d8cf81-0d76-411f-a4af-ac371cab6acb" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "45d5e1ae-0fac-45e9-b66b-f0e42f25c261" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140252Z:45d5e1ae-0fac-45e9-b66b-f0e42f25c261" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:02:52 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fc7087a6-35e4-43a6-a87f-7a3db99c7ee3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "70cab333-024d-43a8-8708-277faae60f80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140323Z:70cab333-024d-43a8-8708-277faae60f80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:03:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1f0ae075-d26c-4cf9-9cac-93b85a0dd6c3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b97e2b1e-376e-49d4-98b3-b4814d765eaa" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140354Z:b97e2b1e-376e-49d4-98b3-b4814d765eaa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:03:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b91eb8fa-0912-42e8-b99e-87e99c1441c2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "3ad79aa6-5997-470d-835b-4b6e74af6f6b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140426Z:3ad79aa6-5997-470d-835b-4b6e74af6f6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:04:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "672b1d1e-bebf-40ca-897d-e407bec4308e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "94c3f866-f72e-4b58-a4df-2b194d533bda" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140457Z:94c3f866-f72e-4b58-a4df-2b194d533bda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:04:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b61836ee-c778-4c7f-b88e-61f3f4e59ca7" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "bf049bf8-bd8f-4d11-a119-d3cfa4354273" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140528Z:bf049bf8-bd8f-4d11-a119-d3cfa4354273" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:05:28 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "77d42d62-44a6-46c3-ab4b-c2afd5117847" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "cdec08bd-8895-45bd-96a2-37011aecb30f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140559Z:cdec08bd-8895-45bd-96a2-37011aecb30f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:05:59 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fdf43446-43b8-4e89-9060-e1743f6197ca" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5c6c9a14-6341-4069-8412-290d102db89f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140631Z:5c6c9a14-6341-4069-8412-290d102db89f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:06:30 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2961dbcf-4259-42fa-a4b5-9c15e48c5104" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "dde013d2-79cf-4a97-af4d-dcbe04384c7e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140702Z:dde013d2-79cf-4a97-af4d-dcbe04384c7e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:07:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4a448019-7dde-4999-8e4a-187c1a52ccf9" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "3ac03a62-061d-4202-a98b-3685032971c7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140733Z:3ac03a62-061d-4202-a98b-3685032971c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:07:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0ffd9f14-51a4-4c5b-bd54-c9770927ce78" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "75fffcef-156d-4f18-8e33-9bd63834443c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140804Z:75fffcef-156d-4f18-8e33-9bd63834443c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:08:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1cf6fb25-231e-41e2-be46-2f2217a5217c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "1541457d-1409-4370-bda5-a756ec17da35" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140835Z:1541457d-1409-4370-bda5-a756ec17da35" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:08:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "05ec816a-613b-4579-93f1-6d444b709022" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "86592283-d869-4250-84e2-dd7e67c6811c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140906Z:86592283-d869-4250-84e2-dd7e67c6811c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:09:05 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9a8d0c8d-ded3-4f0b-902c-c15fcec848ac" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "6ce8a451-8756-4a78-bf06-0f55bd544d58" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T140937Z:6ce8a451-8756-4a78-bf06-0f55bd544d58" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:09:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9b31cb41-38dc-4863-b529-c88003df14ec" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "68dda2cc-d531-4a28-bc9b-2f5e8aab69f2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141007Z:68dda2cc-d531-4a28-bc9b-2f5e8aab69f2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:10:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "146ef1ee-a012-414c-abe5-e7d4a5a4e02a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5c7cf674-5176-405c-94c6-d5f5413ae4e8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141038Z:5c7cf674-5176-405c-94c6-d5f5413ae4e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:10:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "98602118-9ba0-4d7e-aabb-54d3ecc7815d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "0e8c7ad1-06e4-458e-ab2e-67ae3cf7588c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141110Z:0e8c7ad1-06e4-458e-ab2e-67ae3cf7588c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:11:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9e17baad-af6e-4918-8b46-11625d6a3089" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "bb0aca8e-dd0e-483c-a697-3cd0d2907e5c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141141Z:bb0aca8e-dd0e-483c-a697-3cd0d2907e5c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:11:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7f02e134-13f1-47ea-8e1d-c534eacaa459" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e5d27515-f9c9-4b32-b790-e01ff7bb0ebf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141212Z:e5d27515-f9c9-4b32-b790-e01ff7bb0ebf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:12:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9da87568-0922-43a3-a375-25151084fd9f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a3aebc5f-2c63-4e76-b4da-aefcab69f322" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141243Z:a3aebc5f-2c63-4e76-b4da-aefcab69f322" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:12:43 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e96d88a1-a14f-4757-82a0-c95b02e8fcda" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "15619525-057f-4816-b7e3-636a9ca3a887" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141314Z:15619525-057f-4816-b7e3-636a9ca3a887" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:13:13 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ea66a48f-9df7-42ef-972b-63f7f04a6650" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "744f7399-dc84-4fe2-9c2d-86a16345e1c0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141345Z:744f7399-dc84-4fe2-9c2d-86a16345e1c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:13:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "757805b7-e51d-467d-a236-da3b81c1d404" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a401f74d-7c82-49c8-b054-d55774955a40" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211009T141416Z:a401f74d-7c82-49c8-b054-d55774955a40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:14:16 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0045c2b2-e03b-416a-95b5-238f5c2ec8fe" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "689bdcf9-4d2f-47b2-bd72-53f06ad05c4b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T141624Z:689bdcf9-4d2f-47b2-bd72-53f06ad05c4b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:16:24 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2169c187-f71c-41a3-b418-c952f302c353" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b9c2c1c8-b689-4e55-87a3-51ef83495c22" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T141656Z:b9c2c1c8-b689-4e55-87a3-51ef83495c22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:16:56 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a091ea96-88d5-4357-9ace-f4b0343f1928" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b10237ae-1318-440b-8292-7f93bf4cbf06" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T141727Z:b10237ae-1318-440b-8292-7f93bf4cbf06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:17:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c0eb2370-ee09-4efa-96b0-e6378aadb43d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "91f3653f-f0be-4a52-a4dd-a094e36818ce" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T141758Z:91f3653f-f0be-4a52-a4dd-a094e36818ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:17:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "edabfe92-80f0-49e4-a3a9-92ec05235a55" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a6d53f42-35ab-4324-8f79-e7815afe3660" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T141829Z:a6d53f42-35ab-4324-8f79-e7815afe3660" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:18:29 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cfe70fd5-eeb0-472b-8644-253130867156" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "d5d093e2-942c-4731-97cc-e5251a31056e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T141900Z:d5d093e2-942c-4731-97cc-e5251a31056e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:18:59 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7c5f487a-5e66-45d0-8d06-8918244176f9" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "04839987-8ab5-4b69-a4e9-cc8fb04d4dbc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T141931Z:04839987-8ab5-4b69-a4e9-cc8fb04d4dbc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:19:30 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aa173ff6-4187-4cd3-aa1b-734dcee836b0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8b4c61af-7d92-4df1-a781-f807cc0fe0b1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142002Z:8b4c61af-7d92-4df1-a781-f807cc0fe0b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:20:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aa9cbed5-69b3-4491-801f-2c733e9b2301" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "46f76706-72b3-47be-88fd-253b862f58ef" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142033Z:46f76706-72b3-47be-88fd-253b862f58ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:20:32 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "36960a23-dde2-4b00-aa44-bf711acdf730" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "04f78d5c-e218-41d0-a715-a0086a368be5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142104Z:04f78d5c-e218-41d0-a715-a0086a368be5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:21:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b70072e9-6f25-43dd-9013-146e90ad6da2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c1b64175-9f1c-477e-9484-40863fab8008" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142135Z:c1b64175-9f1c-477e-9484-40863fab8008" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:21:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8f90c0d9-4b9c-464b-91a6-76a6d54ad711" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5a0899f7-323f-4fef-95c4-8f0b1c8e0743" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142206Z:5a0899f7-323f-4fef-95c4-8f0b1c8e0743" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:22:05 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0a72d221-cd31-4306-b7e7-a9e4baa7f0e3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a087de3f-23c5-490e-a612-c7d3e97fbe2e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142237Z:a087de3f-23c5-490e-a612-c7d3e97fbe2e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:22:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0f63c42b-ba52-4f5f-a42e-b4486167c32a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "bff793b4-7fb2-4e1a-9f7e-d495adc88ded" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142309Z:bff793b4-7fb2-4e1a-9f7e-d495adc88ded" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:23:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1L2F6dXJlYXN5bmNvcGVyYXRpb25zL2NyZWF0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5b8c681c-d74b-4ed5-a9ec-5c56e5892c07" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "425e3ddc-c68a-4459-a7c8-4700ad75715b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142341Z:425e3ddc-c68a-4459-a7c8-4700ad75715b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:23:40 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a1f825a2-637a-4ec7-a622-d8908d6be085" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9feadb19-29dc-48e4-95a0-ec8b584ac21a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "9e71d8ff-6ad0-4c29-9a6a-ae535ef2d9cd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142342Z:9e71d8ff-6ad0-4c29-9a6a-ae535ef2d9cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:23:41 GMT" - ], - "Content-Length": [ - "4458" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905\",\r\n \"name\": \"hdi-ps-test905\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9783e002-06ff-430b-bd70-2110215197c0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"b6f102db08d844968b5c07f1bef5ccf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-09T14:02:20.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test905-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test905.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.29\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test905-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.29\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7899.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.Storage/storageAccounts/storagepstest7899\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test905\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/privateLinkConfigurations/plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateLinkConfigurations\",\r\n \"name\": \"plconfig\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/privateLinkConfigurations/plconfig/ipConfigurations/ipconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateLinkConfigurations/ipConfigurations\",\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primary\": true,\r\n \"privateIPAllocationMethod\": \"dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"groupId\": \"headnode\"\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "973349d4-3308-4355-acf8-feb49f013af2", - "c7b8f440-92c4-4825-bec2-f1ea721727df", - "919f0a57-3667-4539-a020-aa203ca954bd", - "6b31de0b-1cf2-4e39-841e-f35c5c214804", - "2bbb4af8-c738-4852-b1ec-88d562df0c1f", - "a3a67cbb-d666-45ac-ad59-3fcc76b0983a", - "4da4787c-4f12-44a8-a169-6e541fe2bec3", - "646ed8bf-524f-4e4c-a2c5-05d5573b7c70", - "5265d4ed-d885-4b15-959f-8c1ad2d72724", - "818097d5-6ee4-4647-bb8b-04f7e4e65151", - "6c8aa7f5-ea4d-47ab-8cf4-f9607c245def", - "27563fe4-3785-4c38-8167-f15607ea7538", - "4de4b51b-ef0b-4b4e-a16e-7a238a9f6e35", - "1d25be8e-805c-4bad-bfc6-b26d449f33fe", - "426a719e-0824-4154-b132-6f7047e39a8e", - "9ead3edf-887e-49d5-8cd3-53aa1a965b99" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "06fcfd34-f05a-4d56-8363-3d86e5c306bc" - ], - "x-ms-correlation-request-id": [ - "06fcfd34-f05a-4d56-8363-3d86e5c306bc" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142348Z:06fcfd34-f05a-4d56-8363-3d86e5c306bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:23:47 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "196212" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-dbencrypt/providers/Microsoft.HDInsight/clusters/xinli1testcluster\",\r\n \"name\": \"xinli1testcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"dfe339c5-2568-470d-88db-834f2df35a5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4afa62a83aaf4af3b6a25cd2f6eb6691\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T10:09:37.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1testcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1testcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://xinli1test1.vault.azure.net\",\r\n \"keyName\": \"mTestKey\",\r\n \"keyVersion\": \"93a84cbfd0f443f1aeb9057c018ca27e\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/xinli1-dbencrypt/providers/microsoft.managedidentity/userassignedidentities/xinli1-test-msi\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1testcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-dbencrypt/providers/Microsoft.Storage/storageAccounts/xinli1testcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1testcluster-2021-08-16t10-07-15-148z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/xinli1-dbencrypt/providers/microsoft.managedidentity/userassignedidentities/xinli1-test-msi\": {\r\n \"principalId\": \"0c522313-a93a-47c7-ae5d-b4f25f8b2f8a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytest501251\",\r\n \"name\": \"zzytest501251\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"91ffefef-6b9c-4dbd-a9fd-3d4d49c09913\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2107220401.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f2e8a2cf719f4b3b804ecdbf28bf69b4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-09-08T04:52:31.36\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToQueryBlueprintErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestimage5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestimage5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytest501251-2021-09-08t04-51-47-638z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dongwwarg/providers/Microsoft.HDInsight/clusters/dongwwaspark\",\r\n \"name\": \"dongwwaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"3622b4ea-a793-42f3-8d7a-9daccbd1c105\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"3687a5271ed74f0393d9c6158bcba66b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-30T12:49:13.623\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dongwwaspark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dongwwaspark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dongwwarg/providers/Microsoft.Storage/storageAccounts/dongwwasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dongwwaspark-2021-08-30t12-48-11-924z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1westeu1\",\r\n \"name\": \"xinli1westeu1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"855bd2f1-193e-4d48-bcad-e9534ad93486\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7b3004f168324682803f23bd753ab420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T05:31:21.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1westeu1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Storage/storageAccounts/xinli1westeu1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1westeu1-2021-08-16t05-29-21-677z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/admukund-gwproj/providers/Microsoft.HDInsight/clusters/admukund-gwproj\",\r\n \"name\": \"admukund-gwproj\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b9e0eac3-f57f-4690-a7f3-7182748a036a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4b521f9e7bd0433db55c6ee68c397b60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-07T04:10:53.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"admukund-gwproj-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"admukund-gwproj.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"admukundgwprohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/admukund-gwproj/providers/Microsoft.Storage/storageAccounts/admukundgwprohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"admukund-gwproj-2021-06-07t04-09-54-085z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.HDInsight/clusters/hdispark-pdc\",\r\n \"name\": \"hdispark-pdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"9b6aa9d8-ee92-49a0-a23f-09593775aad3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ea56e3048b4a4ca8afa944bdd1e8df35\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T16:51:37.87\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 144\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.9.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparkpdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Storage/storageAccounts/hdisparkpdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-pdc-2021-09-29t16-49-48-921z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-test-rg/providers/Microsoft.HDInsight/clusters/hdispark-test-eastus\",\r\n \"name\": \"hdispark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3dd798b1-e719-4424-b8ba-b764553c8611\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f213de901dfb4ee9be0a847a6f4bab33\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-30T14:59:02.757\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-test-rg/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-test-eastus-2021-09-30t14-56-49-003z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.HDInsight/clusters/wangyuecasehdi\",\r\n \"name\": \"wangyuecasehdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"9e255f08-1221-493d-bcc9-836a09d75eea\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1c6fc3d5691d4637a77d16efb2624144\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-13T11:20:38.853\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.18\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.18\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuecasehdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Storage/storageAccounts/wangyuecasehdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wangyuecasehdi-2021-09-13t11-17-35-020z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1mintlstest\",\r\n \"name\": \"xinli1mintlstest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6c10cf13-7619-4864-baaa-7c8dfda22836\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"5505a302ff6d4158a399b34acb4faf48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-18T07:00:33.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1mintlstest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1mintlstest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1mintlsthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Storage/storageAccounts/xinli1mintlsthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1mintlstest-2021-08-18t06-52-46-105z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.0\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.HDInsight/clusters/plpecmovetest\",\r\n \"name\": \"plpecmovetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"481cda28-846b-4268-b2dd-1bc04c01c063\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b824f8783ecd4c1a941636292f05ff6a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-13T19:52:15.567\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.18.2.14\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.18.2.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.18.2.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"saswamypltesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Storage/storageAccounts/saswamypltesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plpecmovetest-2021-08-13t19-50-52-836z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shangwei-pl-withoutudr\",\r\n \"name\": \"shangwei-pl-withoutudr\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c00da416-02db-47d2-8da3-0ab8dc087ff7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"96c43f0ed3484bbda4d533666b3e6dbd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-29T11:40:52.707\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiplwithdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweiplwithdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-pl-withoutudr-2021-07-29t11-39-02-370z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/testaddfwback\",\r\n \"name\": \"testaddfwback\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"d8e97d86-315b-4ee7-af2e-fed56113f101\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"a2cca30518dc48dbbb170ee7d8a15e36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-17T12:08:20.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testaddfwback-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testaddfwback.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testaddfwbackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testaddfwbackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testaddfwback-2021-08-17t12-06-12-937z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/test-remove-fw-rule\",\r\n \"name\": \"test-remove-fw-rule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"9f14dcc7-b83a-40c2-8adc-b0b34709caed\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"440c9ac1d9ce4a85a880a64531032a1d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-17T11:22:16.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalClusterValidationError\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. Internal Error when attempting to perform storage account validation for account testremovefwrhdistorage. Got exception error.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testremovefwrhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testremovefwrhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-remove-fw-rule-2021-08-17t11-19-57-945z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/testremovefwrulesretry\",\r\n \"name\": \"testremovefwrulesretry\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c32c63c0-7704-4278-8cb3-40161d643206\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"22f0a19bb1f34d0181df243c161b0bb5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-17T11:34:56.43\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalClusterValidationError\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. Internal Error when attempting to perform storage account validation for account testremovefwrretry. Got exception error.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testremovefwrretry.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testremovefwrretry\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testremovefwrulesretry-2021-08-17t11-33-06-747z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-brse-test283\",\r\n \"name\": \"yalu-brse-test283\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"7d317424-fd6a-4a32-9400-3a85f72b0837\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.2.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2012080609.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"52f94bc33ccf44dcb82dcdb5f433509f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-03-25T12:14:38.283\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test283-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test283.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testbrsoea.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-brse-test283\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-brse-test284\",\r\n \"name\": \"yalu-brse-test284\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"77b77f7d-891b-462d-a534-f6fa81a8b588\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbddd15a25b54cacb7bc8b0351537850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-05-12T07:18:21.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test284-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test284.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testbrsoea.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-brse-test284\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1-jioindiawest-43\",\r\n \"name\": \"xinli1-jioindiawest-43\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"92a5e688-d7b0-4833-a914-cc49492242ea\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"fb0895a1616f4fdda58d7789f0c90231\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-05-20T07:34:05.323\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'The DNS name 'xinli1-jioindiawest-43-ssh' is not available. Please use a different name.'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jinwtest2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.Storage/storageAccounts/xinli1jinwtest2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1-test-aaaaa-2021-05-12t07-27-11-547z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1-jioindiawest-77\",\r\n \"name\": \"xinli1-jioindiawest-77\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"1296c8e9-8878-4a00-bc4a-e5229f39d7a1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7d86fa1b31574ee38750c852a509118c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-05-20T07:51:41.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1-jioindiawest-77-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1-jioindiawest-77.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jinwtest2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.Storage/storageAccounts/xinli1jinwtest2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1-test-aaaaa-2021-05-12t07-27-11-547z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905\",\r\n \"name\": \"hdi-ps-test905\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9783e002-06ff-430b-bd70-2110215197c0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"b6f102db08d844968b5c07f1bef5ccf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-09T14:02:20.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test905-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test905.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.29\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test905-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.29\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7899.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.Storage/storageAccounts/storagepstest7899\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test905\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateLinkConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/privateLinkConfigurations/plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateLinkConfigurations\",\r\n \"name\": \"plconfig\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905/privateLinkConfigurations/plconfig/ipConfigurations/ipconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateLinkConfigurations/ipConfigurations\",\r\n \"name\": \"ipconfig\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primary\": true,\r\n \"privateIPAllocationMethod\": \"dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"groupId\": \"headnode\"\r\n }\r\n }\r\n ],\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1offline09061\",\r\n \"name\": \"x1offline09061\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"4d4966ed-e567-4729-a031-07c5cfa440d4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109030612.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"23a3e8b0660b4080974d855f645ffbac\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-06T03:32:11.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offline09061-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offline09061.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1offline0906hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1offline0906hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1offline09061-2021-09-06t03-29-54-216z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.HDInsight/clusters/aztest2\",\r\n \"name\": \"aztest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"etag\": \"9f72fe21-47ce-4a80-8136-330414db3a58\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109030612.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"83a8f05ffce44615a058f4d97dfdaddb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-14T19:48:30.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"azstorageaccountz2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"az-testcontainer3\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.HDInsight/clusters/aztestzone1\",\r\n \"name\": \"aztestzone1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"fd966865-52df-4652-9670-abd746bccc69\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb6d842d68bb467c92cd99216379f0fb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-11T16:31:42.663\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"canaryazteststorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"az-testcontainer\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311719\",\r\n \"name\": \"wnagyuecentraltest08311719\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"9212cbc3-31c2-4b20-9fab-8816bd9331c1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a64489d888694f2e885387fbf0a5336b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T09:20:04.943\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311719\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311720\",\r\n \"name\": \"wnagyuecentraltest08311720\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"c56e3f7a-3a50-45a8-adc8-31283df0d27e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8d63b32cc685456ab6c8e8d97e32301f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T09:20:45.283\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311720\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311905\",\r\n \"name\": \"wnagyuecentraltest08311905\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"b60e48d3-8e2c-4473-9530-5c7d7a3ea32d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"73f589ff01e64954bd0c117409633cfd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T11:06:33.773\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311905\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311915\",\r\n \"name\": \"wnagyuecentraltest08311915\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"4a1fb518-3737-4b44-b7d2-37b49504528f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"fc949518a9cb4af0a16493dbcad23865\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T11:16:17.95\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311915\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-sece-test8301\",\r\n \"name\": \"yalu-sece-test8301\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"4d28639f-855d-4c0a-858e-cb4c1e59dad7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6045418bbcad4f2a91d725ab467cc591\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-30T04:28:37.44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'Standard_A2_v2' provided in the request is not allowed. Valid values are: EXTRALARGE,LARGE,MEDIUM,SMALL,STANDARD_D1_V2,STANDARD_D11_V2,STANDARD_D12_V2,STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_D2_V2,STANDARD_D3_V2,STANDARD_D4_V2,STANDARD_D5_V2'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusecetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-sece-test8301\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test826\",\r\n \"name\": \"yalu-usw3-test826\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"3eb11d9e-7256-42ff-b0b8-5c9ad230acb6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"326b098279c24e5f88f8762766f768b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-26T14:06:47.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test826-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test826.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusece826.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yalusece826\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test826-2021-08-26t13-52-52-669z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4565/providers/Microsoft.HDInsight/clusters/hdi-ps-test905?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTA1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "75c80a82-399a-4e08-acbe-b9d48a971755" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "583633d3-8577-4460-a799-4a58523f498e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142353Z:583633d3-8577-4460-a799-4a58523f498e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:23:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8zM2YyNjY0Zi0zMGY4LTQ5NGQtYTEzOC05ZmIzMTE1NjRhMDItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a6f96483-04fc-4ec5-9ddc-4db72850db82" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "bb7605a8-b58a-4f4f-9971-5ea742d30cf8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142454Z:bb7605a8-b58a-4f4f-9971-5ea742d30cf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:24:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8zM2YyNjY0Zi0zMGY4LTQ5NGQtYTEzOC05ZmIzMTE1NjRhMDItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0f17290c-8759-4970-ac95-22fe9d2a179a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "b88be2a1-03e7-49a9-bdf2-f00b58550a9e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142556Z:b88be2a1-03e7-49a9-bdf2-f00b58550a9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:25:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8zM2YyNjY0Zi0zMGY4LTQ5NGQtYTEzOC05ZmIzMTE1NjRhMDItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3164,188 +161,62 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "aba4babb-0613-44d7-85e5-40f526ba5bfd" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "9b3f9c6c-7e0f-480c-96c3-ab502b27628c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/8cd99f61-63c3-44a7-b7bd-39e0a8a77d5b?monitor=true&api-version=2017-10-01" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "Retry-After": [ + "3" ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142657Z:9b3f9c6c-7e0f-480c-96c3-ab502b27628c" + "x-ms-request-id": [ + "bcc1f43a-b999-41f1-8bdd-41679bc15396" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:26:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8zM2YyNjY0Zi0zMGY4LTQ5NGQtYTEzOC05ZmIzMTE1NjRhMDItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c01b9856-09a7-4802-b68c-61f33fe9e4a3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a95100fb-5b2c-49a1-8052-bccb73c86364" - ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142759Z:a95100fb-5b2c-49a1-8052-bccb73c86364" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:27:58 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8zM2YyNjY0Zi0zMGY4LTQ5NGQtYTEzOC05ZmIzMTE1NjRhMDItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "265a3694-f101-4250-9fc4-85668312f2bc" - ], - "x-ms-hdi-served-by": [ - "southcentralus" + "11999" ], "x-ms-correlation-request-id": [ - "d2f54bc0-fd6c-47a8-8687-b0739c68d54b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "f98b9793-0a1f-492b-9a24-fcabf47adcf2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T142900Z:d2f54bc0-fd6c-47a8-8687-b0739c68d54b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "JAPANEAST:20230728T012636Z:f98b9793-0a1f-492b-9a24-fcabf47adcf2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:28:59 GMT" - ], - "Content-Length": [ - "23" + "Fri, 28 Jul 2023 01:26:35 GMT" ], "Content-Type": [ - "application/json; charset=utf-8" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8zM2YyNjY0Zi0zMGY4LTQ5NGQtYTEzOC05ZmIzMTE1NjRhMDItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/8cd99f61-63c3-44a7-b7bd-39e0a8a77d5b?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy84Y2Q5OWY2MS02M2MzLTQ0YTctYjdiZC0zOWUwYThhNzdkNWI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3354,61 +225,61 @@ "no-cache" ], "x-ms-request-id": [ - "63cf9089-15c2-4070-a9c2-95029a1bda48" + "4351a196-d44d-4cb7-b958-ad6a8fc87861" ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "d698087d-8b41-4d39-8e00-3040ea024c0f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11998" ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T143001Z:d698087d-8b41-4d39-8e00-3040ea024c0f" + "x-ms-correlation-request-id": [ + "cc6d1229-6a02-433d-8964-954ed42329d8" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230728T012639Z:cc6d1229-6a02-433d-8964-954ed42329d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:30:01 GMT" + "Fri, 28 Jul 2023 01:26:39 GMT" ], "Content-Length": [ - "23" + "1393" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3719/providers/Microsoft.Storage/storageAccounts/storagepstest5345\",\r\n \"name\": \"storagepstest5345\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-28T01:26:14.0268787Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-28T01:26:14.0268787Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-28T01:26:13.8706158Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5345.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5345.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5345.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest5345.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5345-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5345-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5345-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8zM2YyNjY0Zi0zMGY4LTQ5NGQtYTEzOC05ZmIzMTE1NjRhMDItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3719/providers/Microsoft.Storage/storageAccounts/storagepstest5345/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QzNzE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDUzNDUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" + "1ce5dacd-9cd7-4ca5-b20d-9d911094d0ab" + ], + "Accept-Language": [ + "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3417,184 +288,61 @@ "no-cache" ], "x-ms-request-id": [ - "5b17714e-5a2a-4eaa-ab1f-bf1fbb771c3b" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5fecae35-c02f-4bff-9993-a4453e94cf90" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T143103Z:5fecae35-c02f-4bff-9993-a4453e94cf90" + "e2afba72-5da1-4260-89ea-8f6746bc6506" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:31:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8zM2YyNjY0Zi0zMGY4LTQ5NGQtYTEzOC05ZmIzMTE1NjRhMDItMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c4399782-c793-412f-85f1-c4654e4b506e" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "x-ms-correlation-request-id": [ - "eb4b8a0b-2d46-4791-871e-70aeee24b2ec" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "458fc79e-4330-4541-b5ce-963b445e32c4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T143204Z:eb4b8a0b-2d46-4791-871e-70aeee24b2ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "JAPANEAST:20230728T012640Z:458fc79e-4330-4541-b5ce-963b445e32c4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:32:04 GMT" + "Fri, 28 Jul 2023 01:26:40 GMT" ], "Content-Length": [ - "22" + "288" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/33f2664f-30f8-494d-a138-9fb311564a02-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzMzZjI2NjRmLTMwZjgtNDk0ZC1hMTM4LTlmYjMxMTU2NGEwMi0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bdf6834f-cb4b-43e8-b70f-609377f36881" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2c7cce9c-619c-4889-97d2-aff00a43b129" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "54630b2d-b4bb-4d1f-8828-81dbb2dbf9f8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20211009T143204Z:54630b2d-b4bb-4d1f-8828-81dbb2dbf9f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 09 Oct 2021 14:32:04 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4565?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0NTY1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test3719?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QzNzE5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7805c15-bb75-451d-9731-47e2d16e6e27" + "d2f1c326-7b30-46e0-979c-1b806c26d8f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3603,7 +351,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3612,13 +360,13 @@ "14998" ], "x-ms-request-id": [ - "1862ef07-cfc7-4d2d-8cbc-4d8a6c71fbb2" + "13d74161-9843-434c-bff0-4bdc92a7f781" ], "x-ms-correlation-request-id": [ - "1862ef07-cfc7-4d2d-8cbc-4d8a6c71fbb2" + "13d74161-9843-434c-bff0-4bdc92a7f781" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T143208Z:1862ef07-cfc7-4d2d-8cbc-4d8a6c71fbb2" + "JAPANEAST:20230728T020102Z:13d74161-9843-434c-bff0-4bdc92a7f781" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3627,7 +375,7 @@ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:32:07 GMT" + "Fri, 28 Jul 2023 02:01:01 GMT" ], "Expires": [ "-1" @@ -3640,18 +388,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFExTmpVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE0zTVRrdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3660,22 +408,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11987" ], "x-ms-request-id": [ - "935a81b0-16a1-4f3e-8705-0c59c68bd3cd" + "9ab22c75-a9b5-4652-86f7-2ed57344aa47" ], "x-ms-correlation-request-id": [ - "935a81b0-16a1-4f3e-8705-0c59c68bd3cd" + "9ab22c75-a9b5-4652-86f7-2ed57344aa47" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T143223Z:935a81b0-16a1-4f3e-8705-0c59c68bd3cd" + "JAPANEAST:20230728T020117Z:9ab22c75-a9b5-4652-86f7-2ed57344aa47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3684,7 +432,10 @@ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:32:23 GMT" + "Fri, 28 Jul 2023 02:01:17 GMT" + ], + "Connection": [ + "close" ], "Expires": [ "-1" @@ -3697,18 +448,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFExTmpVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE0zTVRrdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3717,22 +468,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11999" ], "x-ms-request-id": [ - "c2686f99-572c-4cc7-a26d-a8e3e7651037" + "d434f8c0-a5c6-4ab7-995f-8311ecfbced6" ], "x-ms-correlation-request-id": [ - "c2686f99-572c-4cc7-a26d-a8e3e7651037" + "d434f8c0-a5c6-4ab7-995f-8311ecfbced6" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T143238Z:c2686f99-572c-4cc7-a26d-a8e3e7651037" + "JAPANEAST:20230728T020132Z:d434f8c0-a5c6-4ab7-995f-8311ecfbced6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3741,7 +492,7 @@ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:32:38 GMT" + "Fri, 28 Jul 2023 02:01:31 GMT" ], "Expires": [ "-1" @@ -3754,18 +505,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFExTmpVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE0zTVRrdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3774,22 +525,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11998" ], "x-ms-request-id": [ - "66ff53cd-4dec-4569-ab6f-d3887e905990" + "b0b20b4d-457b-4995-b933-812abd21f179" ], "x-ms-correlation-request-id": [ - "66ff53cd-4dec-4569-ab6f-d3887e905990" + "b0b20b4d-457b-4995-b933-812abd21f179" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T143254Z:66ff53cd-4dec-4569-ab6f-d3887e905990" + "JAPANEAST:20230728T020147Z:b0b20b4d-457b-4995-b933-812abd21f179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3798,7 +549,7 @@ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:32:53 GMT" + "Fri, 28 Jul 2023 02:01:47 GMT" ], "Expires": [ "-1" @@ -3811,18 +562,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFExTmpVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE0zTVRrdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3831,22 +582,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11997" ], "x-ms-request-id": [ - "361c9d52-79cc-4948-b807-4ae1fb37d119" + "86dfc23a-8995-4eb7-a6cc-8da47449206d" ], "x-ms-correlation-request-id": [ - "361c9d52-79cc-4948-b807-4ae1fb37d119" + "86dfc23a-8995-4eb7-a6cc-8da47449206d" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T143309Z:361c9d52-79cc-4948-b807-4ae1fb37d119" + "JAPANEAST:20230728T020202Z:86dfc23a-8995-4eb7-a6cc-8da47449206d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3855,7 +606,7 @@ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:33:08 GMT" + "Fri, 28 Jul 2023 02:02:02 GMT" ], "Expires": [ "-1" @@ -3868,18 +619,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFExTmpVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE0zTVRrdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3888,16 +639,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11996" ], "x-ms-request-id": [ - "1ac5ea87-2698-4f2c-8c75-b1bd781bd5f1" + "52d19784-2f44-489d-ab47-d0dba0ca3d73" ], "x-ms-correlation-request-id": [ - "1ac5ea87-2698-4f2c-8c75-b1bd781bd5f1" + "52d19784-2f44-489d-ab47-d0dba0ca3d73" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T143324Z:1ac5ea87-2698-4f2c-8c75-b1bd781bd5f1" + "JAPANEAST:20230728T020218Z:52d19784-2f44-489d-ab47-d0dba0ca3d73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3906,7 +657,7 @@ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:33:24 GMT" + "Fri, 28 Jul 2023 02:02:17 GMT" ], "Expires": [ "-1" @@ -3919,18 +670,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ1NjUtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFExTmpVdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDM3MTktSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRE0zTVRrdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3939,16 +690,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11995" ], "x-ms-request-id": [ - "4f2d1956-1e61-4a02-bf2d-0f3f17cbf448" + "f447af07-d154-41bb-8e82-c4f28c3e464a" ], "x-ms-correlation-request-id": [ - "4f2d1956-1e61-4a02-bf2d-0f3f17cbf448" + "f447af07-d154-41bb-8e82-c4f28c3e464a" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211009T143325Z:4f2d1956-1e61-4a02-bf2d-0f3f17cbf448" + "JAPANEAST:20230728T020218Z:f447af07-d154-41bb-8e82-c4f28c3e464a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3957,7 +708,7 @@ "nosniff" ], "Date": [ - "Sat, 09 Oct 2021 14:33:25 GMT" + "Fri, 28 Jul 2023 02:02:17 GMT" ], "Expires": [ "-1" @@ -3972,9 +723,9 @@ ], "Names": { "Test-CreateClusterWithPrivateLinkConfiguration": [ - "hdi-ps-test905", - "group-ps-test4565", - "storagepstest7899" + "hdi-ps-test5517", + "group-ps-test3719", + "storagepstest5345" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithRelayOutoundAndPrivateLink.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithRelayOutoundAndPrivateLink.json index 988edc4acf42..16770c536862 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithRelayOutoundAndPrivateLink.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithRelayOutoundAndPrivateLink.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8097?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8628?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjI4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ce2207f2-0347-42c5-b8a7-a2b5cad38e91" + "300f94f1-7bd5-4810-9328-5831d0bf0282" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "38" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "8c1a97ea-8f27-4be0-a654-6905b567e2c9" + "d10fe4da-b4c5-4edd-82f3-b64f6b278343" ], "x-ms-correlation-request-id": [ - "8c1a97ea-8f27-4be0-a654-6905b567e2c9" + "d10fe4da-b4c5-4edd-82f3-b64f6b278343" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092449Z:8c1a97ea-8f27-4be0-a654-6905b567e2c9" + "JAPANEAST:20230727T090124Z:d10fe4da-b4c5-4edd-82f3-b64f6b278343" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:24:48 GMT" + "Thu, 27 Jul 2023 09:01:24 GMT" ], "Content-Length": [ - "195" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097\",\r\n \"name\": \"group-ps-test8097\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8628\",\r\n \"name\": \"group-ps-test8628\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.Storage/storageAccounts/storagepstest7167?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDcxNjc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8628/providers/Microsoft.Storage/storageAccounts/storagepstest8169?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDgxNjk/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "53db7a18-1713-4d0f-a60f-9a01874ad86e" + "70f2603f-876d-4761-8c93-fe888a7cfadb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "110" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/ef7f9731-6315-429a-82dd-5600a37b62e7?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/826cf4c7-34ea-4be3-931c-373809dc2966?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "ef7f9731-6315-429a-82dd-5600a37b62e7" + "826cf4c7-34ea-4be3-931c-373809dc2966" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "394707e6-3029-4536-939f-da2331fd1d54" + "5c4254fa-0f37-491c-8e1c-c6990993f775" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092455Z:394707e6-3029-4536-939f-da2331fd1d54" + "JAPANEAST:20230727T090130Z:5c4254fa-0f37-491c-8e1c-c6990993f775" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:24:54 GMT" + "Thu, 27 Jul 2023 09:01:30 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,3336 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/ef7f9731-6315-429a-82dd-5600a37b62e7?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvYXN5bmNvcGVyYXRpb25zL2VmN2Y5NzMxLTYzMTUtNDI5YS04MmRkLTU2MDBhMzdiNjJlNz9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/826cf4c7-34ea-4be3-931c-373809dc2966?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy84MjZjZjRjNy0zNGVhLTRiZTMtOTMxYy0zNzM4MDlkYzI5NjY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f301502c-6dcc-47f5-a1d8-c891f1f78602" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "1c2befcb-d254-4174-bbb3-c57d4a53a5a6" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092512Z:1c2befcb-d254-4174-bbb3-c57d4a53a5a6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:25:11 GMT" - ], - "Content-Length": [ - "1408" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.Storage/storageAccounts/storagepstest7167\",\r\n \"name\": \"storagepstest7167\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-10-11T09:24:53.6060959Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-10-11T09:24:53.6060959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-10-11T09:24:53.5124453Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7167.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7167.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7167.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest7167.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"northcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest7167-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest7167-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest7167-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.Storage/storageAccounts/storagepstest7167/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDcxNjcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dbc9c7be-c4f3-4e61-9322-7bb852b987fd" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1c7fdc5d-f2d6-4d1c-ad40-9cb95c9c7c94" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "4b579aff-53d8-42b9-8138-813ad326c0b0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092513Z:4b579aff-53d8-42b9-8138-813ad326c0b0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:25:12 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"prDO2d2ndg8CFtTYr3tAoCRcWi7d4J80lPQoOiluH73tIvNeZOfcaiYhZ86M8aZONwsHDTYQra2TFxjM+DmKyg==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"71bnG41SkiLvQzh8spcV/yXAsxoVCzlMoQGMYQ5Hi5wo3mwdKtqrJNFgv4/RuEXp8qxS6Hbh7nT9m9qokQNBcw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9iaWxsaW5nU3BlY3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "00fbbb79-644d-41e2-b4c8-9eaef296d9e3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "998f87cb-e182-412d-b690-3cccb34b5581" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092515Z:998f87cb-e182-412d-b690-3cccb34b5581" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:25:14 GMT" - ], - "Content-Length": [ - "117423" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A10\",\r\n \"A11\",\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"A8\",\r\n \"A9\",\r\n \"G1\",\r\n \"G2\",\r\n \"G3\",\r\n \"G4\",\r\n \"G5\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E16S_V3\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E32S_V3\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E4S_V3\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E8S_V3\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_G1\",\r\n \"STANDARD_G2\",\r\n \"STANDARD_G3\",\r\n \"STANDARD_G4\",\r\n \"STANDARD_G5\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\",\r\n \"STANDARD_NC24\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E16s_v3\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E32s_v3\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E4s_v3\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E8s_v3\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia East\",\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Brazil South\",\r\n \"Japan West\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_G5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\",\r\n \"3.6\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Kafka\",\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_NC24\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A10\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A9\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A10\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A10 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A11 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A9 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": null,\r\n \"label\": \"G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16S_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E16s_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 274878,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32S_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E32s_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 549756,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E4S_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E4s_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 68720,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E8S_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E8s_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 137439,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_G1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G1(2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 421888,\r\n \"webWorkerResourceDiskSizeInMb\": 421888\r\n },\r\n {\r\n \"name\": \"STANDARD_G2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 843776,\r\n \"webWorkerResourceDiskSizeInMb\": 843776\r\n },\r\n {\r\n \"name\": \"STANDARD_G3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1687552,\r\n \"webWorkerResourceDiskSizeInMb\": 1687552\r\n },\r\n {\r\n \"name\": \"STANDARD_G4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 3375104,\r\n \"webWorkerResourceDiskSizeInMb\": 3375104\r\n },\r\n {\r\n \"name\": \"STANDARD_G5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_G5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 6750208,\r\n \"webWorkerResourceDiskSizeInMb\": 6750208\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_NC24\",\r\n \"cores\": 24,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_NC24 (24 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1474560,\r\n \"webWorkerResourceDiskSizeInMb\": 1474560\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"South Central US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7167.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test8856\",\r\n \"key\": \"prDO2d2ndg8CFtTYr3tAoCRcWi7d4J80lPQoOiluH73tIvNeZOfcaiYhZ86M8aZONwsHDTYQra2TFxjM+DmKyg==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.Storage/storageAccounts/storagepstest7167\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n }\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "3444" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"cd4d6a75-daa4-4c32-aedc-ef7575b821f1\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "c8493267-12d2-4b8b-87d3-e3d3b0289150" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e83851ae-a941-40a7-af8b-f1ffd861ffbf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092524Z:e83851ae-a941-40a7-af8b-f1ffd861ffbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:25:24 GMT" - ], - "Content-Length": [ - "3075" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856\",\r\n \"name\": \"hdi-ps-test8856\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"cd4d6a75-daa4-4c32-aedc-ef7575b821f1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"7c9e49b72fe144e8aeb52a1442272f6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-11T09:25:22.743\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7167.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.Storage/storageAccounts/storagepstest7167\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test8856\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5cd5c3d9-51ef-4684-a5cb-39022b6af60d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "a06f425e-2428-4a90-bfb6-5e5410ed455a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092555Z:a06f425e-2428-4a90-bfb6-5e5410ed455a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:25:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "22f167e2-c827-4150-9f4d-772c53a15278" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "1a74bb56-9bae-4041-9ec3-d8d69ad91d06" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092627Z:1a74bb56-9bae-4041-9ec3-d8d69ad91d06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:26:27 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "52b0aa99-c537-4dbd-b5d3-6cc0a2e1b35d" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "dca2d686-4708-4001-9d0c-cb68ba8c90eb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092658Z:dca2d686-4708-4001-9d0c-cb68ba8c90eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:26:58 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "300ba638-3ac9-42b0-9bb5-191dbda691e0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "1cc0efd9-b16d-4bb1-b4f6-2a4a1eff6cf2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092730Z:1cc0efd9-b16d-4bb1-b4f6-2a4a1eff6cf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:27:30 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a6c2621b-d893-49d1-8334-162ffcde96f8" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "433ebb63-7746-448f-9b32-b2c22a751538" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092801Z:433ebb63-7746-448f-9b32-b2c22a751538" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:28:01 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8b325491-486d-473e-9705-24e1d2575bbd" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "10d7a37c-293e-4b4f-9093-0849777ffd07" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092832Z:10d7a37c-293e-4b4f-9093-0849777ffd07" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:28:32 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c1a035ae-2371-43e5-a23f-ba20f61f4b94" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "ee798b5d-d2aa-42dc-acea-fcf7f49ee94b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092903Z:ee798b5d-d2aa-42dc-acea-fcf7f49ee94b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:29:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "67640017-4620-4ed1-8466-9ff5e2405a7c" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "39a08a66-0b3e-4b44-bc09-8072e23cb65d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T092934Z:39a08a66-0b3e-4b44-bc09-8072e23cb65d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:29:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1e432686-1c33-45d0-9c8d-d7a79d3c3b7e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "813344ab-f6dc-4e71-be9f-d8f64c7febb4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093005Z:813344ab-f6dc-4e71-be9f-d8f64c7febb4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:30:05 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5cfb0a6b-a545-4e51-a7ed-80ad36076424" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c2061dc4-3bc9-4859-bbf7-3e757cecfdae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093036Z:c2061dc4-3bc9-4859-bbf7-3e757cecfdae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:30:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ac787518-ec82-497e-978d-14d71e52ced0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "06d0b386-20e2-48b8-baa1-618482398733" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093107Z:06d0b386-20e2-48b8-baa1-618482398733" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:31:07 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0c7246ca-d364-46b2-a303-f70b09adce1f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "db828956-43ff-4c1d-ae54-5898ee4a26a9" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093138Z:db828956-43ff-4c1d-ae54-5898ee4a26a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:31:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cc775f39-cce2-495d-8d29-9b691bfd3989" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "662f5017-cd38-4c3f-acfd-bcb6e132d775" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093210Z:662f5017-cd38-4c3f-acfd-bcb6e132d775" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:32:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c8a593f3-b519-468d-bedc-d515826c8d47" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c823f14e-1eb4-4958-b5d0-c900401e30cf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093241Z:c823f14e-1eb4-4958-b5d0-c900401e30cf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:32:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bcf9c484-c581-4396-a584-d0eb867582d3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "5db18a68-27ee-43f3-b480-4120604bf44d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093312Z:5db18a68-27ee-43f3-b480-4120604bf44d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:33:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e84a9770-2f3f-49f9-ae25-fd8d75301475" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "7e18acdd-1bda-4463-819e-a62862f8a27f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093343Z:7e18acdd-1bda-4463-819e-a62862f8a27f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:33:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c24c356e-c959-46eb-88f0-b3360438e8bd" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "98fd358b-c0ac-4745-8b90-aa949a6c6d20" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093413Z:98fd358b-c0ac-4745-8b90-aa949a6c6d20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:34:13 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c1265a36-aef5-4adb-adf9-c36655ffd64a" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "bd25c6da-db51-49d2-a785-86108033c2bd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093444Z:bd25c6da-db51-49d2-a785-86108033c2bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:34:44 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a682050f-1054-49d1-967c-140d45ca90be" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "91322070-b32d-45d7-9e00-fcdd9084be1d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093515Z:91322070-b32d-45d7-9e00-fcdd9084be1d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:35:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eeb67093-0a2b-4ab6-9747-cd26c55bf881" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "fd196063-48a4-4f49-8f67-e5341f9a2bea" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093546Z:fd196063-48a4-4f49-8f67-e5341f9a2bea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:35:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6badc975-2b75-47f5-8381-a4d8ae415646" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "ca053865-8007-4318-a51c-39a2d836b767" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093618Z:ca053865-8007-4318-a51c-39a2d836b767" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:36:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c34ff66e-e084-49b2-b701-4adb2e6e998f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "7c518350-9691-4eeb-8941-42defb8e940e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093649Z:7c518350-9691-4eeb-8941-42defb8e940e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:36:48 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "77146b64-a49c-4ba4-b1c2-81bc5bc910d4" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "f340e017-4c1b-4ab3-8d92-0c0239de36de" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093720Z:f340e017-4c1b-4ab3-8d92-0c0239de36de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:37:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "da321d4e-1a9b-4201-83c1-83af74444e2f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e6c9404d-d314-41d1-b31c-51198d1e70ce" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093751Z:e6c9404d-d314-41d1-b31c-51198d1e70ce" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:37:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "07a33f62-e92d-4ca0-9f79-59a8c97f70a7" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "2d94a06a-ce9a-471d-af46-9f1ede401dcb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093822Z:2d94a06a-ce9a-471d-af46-9f1ede401dcb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:38:22 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a501c383-583c-41b3-8189-a471157262e2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "639d6bde-ce1d-4b07-b26c-16ec09544cba" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093853Z:639d6bde-ce1d-4b07-b26c-16ec09544cba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:38:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "120da88d-973b-4f37-9744-af14a8d4d895" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "18ad5518-bbb0-43da-b085-6af057290264" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093924Z:18ad5518-bbb0-43da-b085-6af057290264" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:39:24 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "13674ac0-a688-4977-b7a8-95a4a66aafdb" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "2fc83422-5f49-463d-bc53-34b55cf28f9b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T093955Z:2fc83422-5f49-463d-bc53-34b55cf28f9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:39:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a3fdf885-d22a-460a-b970-4720a9d6f5d4" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "825fe1d6-9585-4bd0-9e62-1c93823b9687" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094026Z:825fe1d6-9585-4bd0-9e62-1c93823b9687" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:40:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4eb7ed2a-c5db-4a21-a61d-06aa99dfb9b6" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "708b4bd9-e0a8-4b51-81a5-1d4c4af6752b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094057Z:708b4bd9-e0a8-4b51-81a5-1d4c4af6752b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:40:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "448cc392-aaca-46ef-aec5-3ef5806d8ded" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "43394cfe-1086-4631-8d65-768106191d49" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094128Z:43394cfe-1086-4631-8d65-768106191d49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:41:27 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9e5b663b-ff1f-49c6-9422-17a9290d54e0" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8439ff73-56c6-4e77-acce-004062c3144e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094200Z:8439ff73-56c6-4e77-acce-004062c3144e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:42:00 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "14f39593-e1c7-4d67-a96e-eea1a39b12fb" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "be0efdaf-c0af-4e75-aa22-f4b9c460bed2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094231Z:be0efdaf-c0af-4e75-aa22-f4b9c460bed2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:42:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "12814c41-735e-48ec-bb2a-a3a74dc4cb6f" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "095d4962-6973-46bb-89f4-b49a4a5b23cc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094302Z:095d4962-6973-46bb-89f4-b49a4a5b23cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:43:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1be31190-37d7-4ee0-ae44-7f1e772e0437" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "4853f2f3-31d6-4317-a39d-2a2ccec1e48c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094333Z:4853f2f3-31d6-4317-a39d-2a2ccec1e48c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:43:32 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd9b2e5b-da5c-413e-bc04-cbf4b87dd847" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "e30c0171-86e5-4415-ab87-889d65cb7b80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094404Z:e30c0171-86e5-4415-ab87-889d65cb7b80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:44:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4726a1f6-2d24-4d37-ad59-1b1677483cd2" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8a549afb-41ed-4a6f-a063-156e4312ac69" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094435Z:8a549afb-41ed-4a6f-a063-156e4312ac69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:44:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0c50cc6c-b8ba-4eb5-bb23-12d105f16302" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "85dd3013-d98b-4d6a-8af6-37bedef167c6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094506Z:85dd3013-d98b-4d6a-8af6-37bedef167c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:45:05 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "929580f6-23df-48f6-82ce-c54fa25829d3" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8aa28c98-df36-4349-a545-520ec266b932" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094537Z:8aa28c98-df36-4349-a545-520ec266b932" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:45:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Ni9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "87665e1e-166c-46ed-bb62-fa46575bb16b" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "bae70ec6-41d2-4896-b027-5a8fd93ce9dc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094608Z:bae70ec6-41d2-4896-b027-5a8fd93ce9dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:46:08 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "55123128-ec9f-4433-a5ab-b6a35e0298e9" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4f2acc56-17dc-4ef6-ac4b-32a846b60283" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "500d4042-93c8-4027-a05c-cdf5c519c02d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094609Z:500d4042-93c8-4027-a05c-cdf5c519c02d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:46:09 GMT" - ], - "Content-Length": [ - "3502" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856\",\r\n \"name\": \"hdi-ps-test8856\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"cd4d6a75-daa4-4c32-aedc-ef7575b821f1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"7c9e49b72fe144e8aeb52a1442272f6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-11T09:25:22.743\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8856-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8856.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.29\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8856-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.29\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7167.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.Storage/storageAccounts/storagepstest7167\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test8856\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "13b566cd-462a-423e-b479-05977ac52d69", - "856498b6-0551-465d-9070-9f13aa95b770", - "e9e4474e-3e04-4769-9aa8-42c5b22aa0b6", - "6bf9c643-8419-481d-905a-764b21b3d068", - "2bc7c84e-8286-461e-b885-178155beedf1", - "60b94379-8155-495e-a15d-c4fe1bdb7f3e", - "fe674ef9-6120-4401-8f08-d0b79db08c22", - "158b5ef6-6c32-42d0-9455-a5893636179a", - "cdf22965-5226-4253-8bad-be1b419e9eb2", - "30a49cc8-d4ae-457d-85fd-1462f90d8f74", - "2734e98b-3d88-4ae2-8507-a0a1b17defe2", - "5122bfa5-a240-435b-8669-55868f38619d", - "097a470f-373c-4eb2-a68e-74565967ad3d", - "cd108445-b76c-4695-9b51-942ed2823ee8", - "c09b9c5e-3f59-494b-a6b5-5a76ddb49044", - "a75dbee2-00db-4478-9604-3e265bdb05e7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "774bbab0-93e7-4756-a1a4-c209d01255c1" - ], - "x-ms-correlation-request-id": [ - "774bbab0-93e7-4756-a1a4-c209d01255c1" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094615Z:774bbab0-93e7-4756-a1a4-c209d01255c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:46:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "193066" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-dbencrypt/providers/Microsoft.HDInsight/clusters/xinli1testcluster\",\r\n \"name\": \"xinli1testcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"dfe339c5-2568-470d-88db-834f2df35a5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4afa62a83aaf4af3b6a25cd2f6eb6691\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T10:09:37.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1testcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1testcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://xinli1test1.vault.azure.net\",\r\n \"keyName\": \"mTestKey\",\r\n \"keyVersion\": \"93a84cbfd0f443f1aeb9057c018ca27e\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/xinli1-dbencrypt/providers/microsoft.managedidentity/userassignedidentities/xinli1-test-msi\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1testcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-dbencrypt/providers/Microsoft.Storage/storageAccounts/xinli1testcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1testcluster-2021-08-16t10-07-15-148z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/xinli1-dbencrypt/providers/microsoft.managedidentity/userassignedidentities/xinli1-test-msi\": {\r\n \"principalId\": \"0c522313-a93a-47c7-ae5d-b4f25f8b2f8a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytest501251\",\r\n \"name\": \"zzytest501251\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central India\",\r\n \"etag\": \"91ffefef-6b9c-4dbd-a9fd-3d4d49c09913\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2107220401.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f2e8a2cf719f4b3b804ecdbf28bf69b4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-09-08T04:52:31.36\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToQueryBlueprintErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestimage5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestimage5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytest501251-2021-09-08t04-51-47-638z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dongwwarg/providers/Microsoft.HDInsight/clusters/dongwwaspark\",\r\n \"name\": \"dongwwaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada Central\",\r\n \"etag\": \"3622b4ea-a793-42f3-8d7a-9daccbd1c105\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"3687a5271ed74f0393d9c6158bcba66b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-30T12:49:13.623\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dongwwaspark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dongwwaspark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dongwwarg/providers/Microsoft.Storage/storageAccounts/dongwwasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dongwwaspark-2021-08-30t12-48-11-924z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1westeu1\",\r\n \"name\": \"xinli1westeu1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"855bd2f1-193e-4d48-bcad-e9534ad93486\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7b3004f168324682803f23bd753ab420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Network/virtualNetworks/xinli1westeu1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T05:31:21.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1westeu1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1westeu1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Storage/storageAccounts/xinli1westeu1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1westeu1-2021-08-16t05-29-21-677z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/admukund-gwproj/providers/Microsoft.HDInsight/clusters/admukund-gwproj\",\r\n \"name\": \"admukund-gwproj\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b9e0eac3-f57f-4690-a7f3-7182748a036a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4b521f9e7bd0433db55c6ee68c397b60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-07T04:10:53.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"admukund-gwproj-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"admukund-gwproj.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"admukundgwprohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/admukund-gwproj/providers/Microsoft.Storage/storageAccounts/admukundgwprohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"admukund-gwproj-2021-06-07t04-09-54-085z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.HDInsight/clusters/hdispark-pdc\",\r\n \"name\": \"hdispark-pdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"9b6aa9d8-ee92-49a0-a23f-09593775aad3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ea56e3048b4a4ca8afa944bdd1e8df35\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Network/virtualNetworks/hdispark-pdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T16:51:37.87\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 144\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-pdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.9.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparkpdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-pdc-eastus/providers/Microsoft.Storage/storageAccounts/hdisparkpdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-pdc-2021-09-29t16-49-48-921z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-test-rg/providers/Microsoft.HDInsight/clusters/hdispark-test-eastus\",\r\n \"name\": \"hdispark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3dd798b1-e719-4424-b8ba-b764553c8611\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f213de901dfb4ee9be0a847a6f4bab33\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-30T14:59:02.757\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-test-rg/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-test-eastus-2021-09-30t14-56-49-003z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.HDInsight/clusters/wangyuecasehdi\",\r\n \"name\": \"wangyuecasehdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"9e255f08-1221-493d-bcc9-836a09d75eea\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1c6fc3d5691d4637a77d16efb2624144\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Network/virtualNetworks/wangyuecasevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-13T11:20:38.853\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.18\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wangyuecasehdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.18\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuecasehdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyuetestcase/providers/Microsoft.Storage/storageAccounts/wangyuecasehdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wangyuecasehdi-2021-09-13t11-17-35-020z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1mintlstest\",\r\n \"name\": \"xinli1mintlstest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6c10cf13-7619-4864-baaa-7c8dfda22836\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"5505a302ff6d4158a399b34acb4faf48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-18T07:00:33.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1mintlstest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1mintlstest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1mintlsthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.Storage/storageAccounts/xinli1mintlsthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1mintlstest-2021-08-18t06-52-46-105z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.0\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.HDInsight/clusters/plpecmovetest\",\r\n \"name\": \"plpecmovetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"481cda28-846b-4268-b2dd-1bc04c01c063\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b824f8783ecd4c1a941636292f05ff6a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Network/virtualNetworks/vnet/subnets/SubnetWithOutboundNATGateway\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-13T19:52:15.567\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.18.2.14\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.18.2.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plpecmovetest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.18.2.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"saswamypltesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/saswamyfw/providers/Microsoft.Storage/storageAccounts/saswamypltesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plpecmovetest-2021-08-13t19-50-52-836z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shangwei-pl-withoutudr\",\r\n \"name\": \"shangwei-pl-withoutudr\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c00da416-02db-47d2-8da3-0ab8dc087ff7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"96c43f0ed3484bbda4d533666b3e6dbd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/vnetwithoutudr\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-29T11:40:52.707\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-pl-withoutudr-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiplwithdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweiplwithdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-pl-withoutudr-2021-07-29t11-39-02-370z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/testaddfwback\",\r\n \"name\": \"testaddfwback\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"d8e97d86-315b-4ee7-af2e-fed56113f101\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"a2cca30518dc48dbbb170ee7d8a15e36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-17T12:08:20.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testaddfwback-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testaddfwback.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testaddfwbackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testaddfwbackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testaddfwback-2021-08-17t12-06-12-937z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/test-remove-fw-rule\",\r\n \"name\": \"test-remove-fw-rule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"9f14dcc7-b83a-40c2-8adc-b0b34709caed\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"440c9ac1d9ce4a85a880a64531032a1d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-17T11:22:16.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalClusterValidationError\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. Internal Error when attempting to perform storage account validation for account testremovefwrhdistorage. Got exception error.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-remove-fw-rule-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testremovefwrhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testremovefwrhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-remove-fw-rule-2021-08-17t11-19-57-945z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/testremovefwrulesretry\",\r\n \"name\": \"testremovefwrulesretry\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c32c63c0-7704-4278-8cb3-40161d643206\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"22f0a19bb1f34d0181df243c161b0bb5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-17T11:34:56.43\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InternalClusterValidationError\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. Internal Error when attempting to perform storage account validation for account testremovefwrretry. Got exception error.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testremovefwrulesretry-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testremovefwrretry.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/testremovefwrretry\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testremovefwrulesretry-2021-08-17t11-33-06-747z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-brse-test283\",\r\n \"name\": \"yalu-brse-test283\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"7d317424-fd6a-4a32-9400-3a85f72b0837\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.2.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2012080609.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"52f94bc33ccf44dcb82dcdb5f433509f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-03-25T12:14:38.283\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test283-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test283.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testbrsoea.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-brse-test283\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-brse-test284\",\r\n \"name\": \"yalu-brse-test284\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil Southeast\",\r\n \"etag\": \"77b77f7d-891b-462d-a534-f6fa81a8b588\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbddd15a25b54cacb7bc8b0351537850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-05-12T07:18:21.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test284-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-brse-test284.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testbrsoea.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-brse-test284\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1-jioindiawest-43\",\r\n \"name\": \"xinli1-jioindiawest-43\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"92a5e688-d7b0-4833-a914-cc49492242ea\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"fb0895a1616f4fdda58d7789f0c90231\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-05-20T07:34:05.323\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'The DNS name 'xinli1-jioindiawest-43-ssh' is not available. Please use a different name.'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jinwtest2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.Storage/storageAccounts/xinli1jinwtest2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1-test-aaaaa-2021-05-12t07-27-11-547z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-jioindiawest-test/providers/Microsoft.HDInsight/clusters/xinli1-jioindiawest-77\",\r\n \"name\": \"xinli1-jioindiawest-77\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Jio India West\",\r\n \"etag\": \"1296c8e9-8878-4a00-bc4a-e5229f39d7a1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7d86fa1b31574ee38750c852a509118c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xinli1\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-05-20T07:51:41.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1-jioindiawest-77-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1-jioindiawest-77.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1jinwtest2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1-test-devrp/providers/Microsoft.Storage/storageAccounts/xinli1jinwtest2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1-test-aaaaa-2021-05-12t07-27-11-547z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856\",\r\n \"name\": \"hdi-ps-test8856\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"cd4d6a75-daa4-4c32-aedc-ef7575b821f1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"7c9e49b72fe144e8aeb52a1442272f6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-11T09:25:22.743\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8856-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8856.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.29\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test8856-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.29\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7167.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.Storage/storageAccounts/storagepstest7167\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test8856\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.HDInsight/clusters/aztest2\",\r\n \"name\": \"aztest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"zones\": [\r\n \"2\"\r\n ],\r\n \"etag\": \"9f72fe21-47ce-4a80-8136-330414db3a58\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109030612.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"83a8f05ffce44615a058f4d97dfdaddb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-rg/providers/Microsoft.Network/virtualNetworks/testvnet2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-14T19:48:30.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztest2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"azstorageaccountz2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"az-testcontainer3\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.HDInsight/clusters/aztestzone1\",\r\n \"name\": \"aztestzone1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"fd966865-52df-4652-9670-abd746bccc69\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb6d842d68bb467c92cd99216379f0fb\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_ds3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiadmin\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/gav-canary-rg/providers/Microsoft.Network/virtualNetworks/hditestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-11T16:31:42.663\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"aztestzone1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"canaryazteststorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"az-testcontainer\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311719\",\r\n \"name\": \"wnagyuecentraltest08311719\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"9212cbc3-31c2-4b20-9fab-8816bd9331c1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a64489d888694f2e885387fbf0a5336b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T09:20:04.943\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311719\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311720\",\r\n \"name\": \"wnagyuecentraltest08311720\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"c56e3f7a-3a50-45a8-adc8-31283df0d27e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8d63b32cc685456ab6c8e8d97e32301f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T09:20:45.283\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311720\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311905\",\r\n \"name\": \"wnagyuecentraltest08311905\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"b60e48d3-8e2c-4473-9530-5c7d7a3ea32d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"73f589ff01e64954bd0c117409633cfd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T11:06:33.773\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311905\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wangyueSwedenCentralTest/providers/Microsoft.HDInsight/clusters/wnagyuecentraltest08311915\",\r\n \"name\": \"wnagyuecentraltest08311915\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"4a1fb518-3737-4b44-b7d2-37b49504528f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"fc949518a9cb4af0a16493dbcad23865\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wangyue\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-31T11:16:17.95\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wangyuetestsecn.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wnagyuecentraltest08311915\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/yalu-sece-test8301\",\r\n \"name\": \"yalu-sece-test8301\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"4d28639f-855d-4c0a-858e-cb4c1e59dad7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6045418bbcad4f2a91d725ab467cc591\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"xiaogao\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-08-30T04:28:37.44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'Standard_A2_v2' provided in the request is not allowed. Valid values are: EXTRALARGE,LARGE,MEDIUM,SMALL,STANDARD_D1_V2,STANDARD_D11_V2,STANDARD_D12_V2,STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_D2_V2,STANDARD_D3_V2,STANDARD_D4_V2,STANDARD_D5_V2'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusecetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-sece-test8301\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test826\",\r\n \"name\": \"yalu-usw3-test826\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Sweden Central\",\r\n \"etag\": \"3eb11d9e-7256-42ff-b0b8-5c9ad230acb6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"326b098279c24e5f88f8762766f768b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-26T14:06:47.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test826-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test826.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusece826.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yalusece826\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test826-2021-08-26t13-52-52-669z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8097/providers/Microsoft.HDInsight/clusters/hdi-ps-test8856?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0ODg1Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South Central US/azureasyncoperations/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "2c1bef3a-2cfc-4bbc-a6d5-ead82b264370" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8dbe9bea-ac65-4cbc-bb5c-218c6ded8af2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094619Z:8dbe9bea-ac65-4cbc-bb5c-218c6ded8af2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:46:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8wNWZiMmNjYy01MzUzLTRlZGMtYjMwZS00ZDg2OTc2ZGUyYzgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "99d3f110-f257-4fe6-9b67-e24914ec8f05" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "19417e3e-5387-4439-898b-7a7f631e1b29" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094720Z:19417e3e-5387-4439-898b-7a7f631e1b29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:47:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8wNWZiMmNjYy01MzUzLTRlZGMtYjMwZS00ZDg2OTc2ZGUyYzgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "81583056-b4ea-413b-be2f-e2778ed24f4e" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "c374ba6f-9395-4d3b-a883-3a01f81a07a8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094821Z:c374ba6f-9395-4d3b-a883-3a01f81a07a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:48:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8wNWZiMmNjYy01MzUzLTRlZGMtYjMwZS00ZDg2OTc2ZGUyYzgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "306cb35f-713b-41d1-a094-517576824264" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "74c370a8-8448-4c23-adbb-9c94f7ac366d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T094922Z:74c370a8-8448-4c23-adbb-9c94f7ac366d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:49:22 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8wNWZiMmNjYy01MzUzLTRlZGMtYjMwZS00ZDg2OTc2ZGUyYzgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2cd2707f-e1bb-4a06-a011-4219e883b9ac" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "8f8ba06a-0ae3-4f8f-afc5-c5c3cb281c9c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095023Z:8f8ba06a-0ae3-4f8f-afc5-c5c3cb281c9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:50:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8wNWZiMmNjYy01MzUzLTRlZGMtYjMwZS00ZDg2OTc2ZGUyYzgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1b08a5a9-fa35-4863-9bdd-df4ce6688cfe" - ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "d4bb1e25-59bf-4ae4-98ff-569b5c769812" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095124Z:d4bb1e25-59bf-4ae4-98ff-569b5c769812" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:51:24 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/azureasyncoperations/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9henVyZWFzeW5jb3BlcmF0aW9ucy8wNWZiMmNjYy01MzUzLTRlZGMtYjMwZS00ZDg2OTc2ZGUyYzgtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3479,62 +161,62 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "299937a0-bcb9-4f58-8abe-f5ae10550ad2" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/826cf4c7-34ea-4be3-931c-373809dc2966?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" ], - "x-ms-hdi-served-by": [ - "southcentralus" + "x-ms-request-id": [ + "51f81483-1347-4be6-8aa5-abae4944e184" ], - "x-ms-correlation-request-id": [ - "d4d02149-57b9-4b67-a24b-bbe538d16307" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11999" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095225Z:d4d02149-57b9-4b67-a24b-bbe538d16307" + "x-ms-correlation-request-id": [ + "5ded3239-9599-4b1b-8fbe-71a98aa0fcad" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230727T090147Z:5ded3239-9599-4b1b-8fbe-71a98aa0fcad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:52:25 GMT" - ], - "Content-Length": [ - "22" + "Thu, 27 Jul 2023 09:01:47 GMT" ], "Content-Type": [ - "application/json; charset=utf-8" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/South%20Central%20US/operationresults/05fb2ccc-5353-4edc-b30e-4d86976de2c8-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9Tb3V0aCUyMENlbnRyYWwlMjBVUy9vcGVyYXRpb25yZXN1bHRzLzA1ZmIyY2NjLTUzNTMtNGVkYy1iMzBlLTRkODY5NzZkZTJjOC0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/826cf4c7-34ea-4be3-931c-373809dc2966?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy84MjZjZjRjNy0zNGVhLTRiZTMtOTMxYy0zNzM4MDlkYzI5NjY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9c66ff57-abc3-45b8-ac29-de074193f79a" - ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3543,58 +225,61 @@ "no-cache" ], "x-ms-request-id": [ - "eb6e6aea-6f7c-49fa-81ea-adcc31115a5b" + "d0f0f92d-3b01-46e3-995e-639526cfadc6" ], - "x-ms-hdi-served-by": [ - "southcentralus" - ], - "x-ms-correlation-request-id": [ - "42bd7a48-7eb3-40bd-a40d-8f9f5ab94885" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11998" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095226Z:42bd7a48-7eb3-40bd-a40d-8f9f5ab94885" + "x-ms-correlation-request-id": [ + "40bc4e7f-77de-4a74-8d41-4304d88cab48" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "JAPANEAST:20230727T090150Z:40bc4e7f-77de-4a74-8d41-4304d88cab48" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:52:25 GMT" + "Thu, 27 Jul 2023 09:01:50 GMT" + ], + "Content-Length": [ + "1393" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8628/providers/Microsoft.Storage/storageAccounts/storagepstest8169\",\r\n \"name\": \"storagepstest8169\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-27T09:01:25.9935967Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-27T09:01:25.9935967Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-27T09:01:25.8217445Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8169.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8169.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8169.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest8169.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest8169-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest8169-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest8169-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8097?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4MDk3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8628/providers/Microsoft.Storage/storageAccounts/storagepstest8169/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDgxNjkvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "dd1da0a3-f06e-4f4e-aa03-51f7b7e523e1" + "4219109d-06f9-4db9-8514-bba76d5d7dbe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3602,227 +287,62 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], "x-ms-request-id": [ - "171fcd2c-a072-4c6f-b5c8-36554a9554af" - ], - "x-ms-correlation-request-id": [ - "171fcd2c-a072-4c6f-b5c8-36554a9554af" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095231Z:171fcd2c-a072-4c6f-b5c8-36554a9554af" + "909daa58-c3e1-4a83-afaa-ed9c1a8917cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:52:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-request-id": [ - "23d89e2a-464e-4841-8139-1a242c8d99d3" - ], "x-ms-correlation-request-id": [ - "23d89e2a-464e-4841-8139-1a242c8d99d3" + "a39f2b55-b128-4168-9730-cf4016c51f78" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095246Z:23d89e2a-464e-4841-8139-1a242c8d99d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "JAPANEAST:20230727T090151Z:a39f2b55-b128-4168-9730-cf4016c51f78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:52:45 GMT" - ], - "Expires": [ - "-1" + "Thu, 27 Jul 2023 09:01:51 GMT" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "3588c902-ff23-4476-a75d-e86cb03a72b2" - ], - "x-ms-correlation-request-id": [ - "3588c902-ff23-4476-a75d-e86cb03a72b2" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095301Z:3588c902-ff23-4476-a75d-e86cb03a72b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "288" ], - "Date": [ - "Mon, 11 Oct 2021 09:53:01 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8628?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjI4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.30411.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "739538ef-2eef-4aab-8d45-7f4974bd55fc" - ], - "x-ms-correlation-request-id": [ - "739538ef-2eef-4aab-8d45-7f4974bd55fc" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095317Z:739538ef-2eef-4aab-8d45-7f4974bd55fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 11 Oct 2021 09:53:16 GMT" + "x-ms-client-request-id": [ + "aef85f1a-5d42-4525-9a24-737dfc4d264c" ], - "Expires": [ - "-1" + "Accept-Language": [ + "en-US" ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3831,22 +351,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "17addb4b-2d0e-4543-b0a8-141091d06f6e" + "2d0f06b8-406f-465f-97f9-6a6d8bfe9d12" ], "x-ms-correlation-request-id": [ - "17addb4b-2d0e-4543-b0a8-141091d06f6e" + "2d0f06b8-406f-465f-97f9-6a6d8bfe9d12" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095332Z:17addb4b-2d0e-4543-b0a8-141091d06f6e" + "JAPANEAST:20230727T093759Z:2d0f06b8-406f-465f-97f9-6a6d8bfe9d12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3855,7 +375,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:53:32 GMT" + "Thu, 27 Jul 2023 09:37:58 GMT" ], "Expires": [ "-1" @@ -3868,18 +388,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpndFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3888,22 +408,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "9675ddeb-ccd8-450b-9b1c-fff36a48d601" + "223f84ad-8e4e-41fb-b621-70bf3f12e58e" ], "x-ms-correlation-request-id": [ - "9675ddeb-ccd8-450b-9b1c-fff36a48d601" + "223f84ad-8e4e-41fb-b621-70bf3f12e58e" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095347Z:9675ddeb-ccd8-450b-9b1c-fff36a48d601" + "JAPANEAST:20230727T093814Z:223f84ad-8e4e-41fb-b621-70bf3f12e58e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3912,7 +432,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:53:47 GMT" + "Thu, 27 Jul 2023 09:38:13 GMT" ], "Expires": [ "-1" @@ -3925,18 +445,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpndFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3945,22 +465,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "9e3f9dac-064a-45fb-978b-6d77edc87a2d" + "21ca2653-e907-4a96-9c0b-23b2efdb0fa2" ], "x-ms-correlation-request-id": [ - "9e3f9dac-064a-45fb-978b-6d77edc87a2d" + "21ca2653-e907-4a96-9c0b-23b2efdb0fa2" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095403Z:9e3f9dac-064a-45fb-978b-6d77edc87a2d" + "JAPANEAST:20230727T093829Z:21ca2653-e907-4a96-9c0b-23b2efdb0fa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3969,7 +489,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:54:02 GMT" + "Thu, 27 Jul 2023 09:38:28 GMT" ], "Expires": [ "-1" @@ -3982,18 +502,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpndFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4002,22 +522,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "ec9afce3-d7e8-4ddd-bfd7-39070a7ceacb" + "a95e1298-fa07-4aa9-8a52-208fc70481dd" ], "x-ms-correlation-request-id": [ - "ec9afce3-d7e8-4ddd-bfd7-39070a7ceacb" + "a95e1298-fa07-4aa9-8a52-208fc70481dd" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095418Z:ec9afce3-d7e8-4ddd-bfd7-39070a7ceacb" + "JAPANEAST:20230727T093844Z:a95e1298-fa07-4aa9-8a52-208fc70481dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4026,7 +546,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:54:17 GMT" + "Thu, 27 Jul 2023 09:38:44 GMT" ], "Expires": [ "-1" @@ -4039,18 +559,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpndFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4059,22 +579,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "24ce0eb1-bc06-4c3e-8a3f-e002fee639ce" + "90f9a84f-d19c-44c3-8ac1-c075b36a76ef" ], "x-ms-correlation-request-id": [ - "24ce0eb1-bc06-4c3e-8a3f-e002fee639ce" + "90f9a84f-d19c-44c3-8ac1-c075b36a76ef" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095433Z:24ce0eb1-bc06-4c3e-8a3f-e002fee639ce" + "JAPANEAST:20230727T093859Z:90f9a84f-d19c-44c3-8ac1-c075b36a76ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4083,7 +603,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:54:33 GMT" + "Thu, 27 Jul 2023 09:38:59 GMT" ], "Expires": [ "-1" @@ -4096,18 +616,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpndFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4116,16 +636,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "0bdf519f-8d11-4423-bf65-351d240c8ae2" + "728b8ccf-761f-45a1-9d2d-439d9d1febc0" ], "x-ms-correlation-request-id": [ - "0bdf519f-8d11-4423-bf65-351d240c8ae2" + "728b8ccf-761f-45a1-9d2d-439d9d1febc0" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095449Z:0bdf519f-8d11-4423-bf65-351d240c8ae2" + "JAPANEAST:20230727T093914Z:728b8ccf-761f-45a1-9d2d-439d9d1febc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4134,7 +654,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:54:48 GMT" + "Thu, 27 Jul 2023 09:39:14 GMT" ], "Expires": [ "-1" @@ -4147,18 +667,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDgwOTctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGd3T1RjdFUwOVZWRWhEUlU1VVVrRk1WVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1kyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDg2MjgtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGcyTWpndFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.30411.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -4167,16 +687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "180c97ff-63b0-46b3-99f1-cbb06a17251e" + "73cb566c-59cd-4eba-aaf3-62cbca78e872" ], "x-ms-correlation-request-id": [ - "180c97ff-63b0-46b3-99f1-cbb06a17251e" + "73cb566c-59cd-4eba-aaf3-62cbca78e872" ], "x-ms-routing-request-id": [ - "JAPANEAST:20211011T095449Z:180c97ff-63b0-46b3-99f1-cbb06a17251e" + "JAPANEAST:20230727T093915Z:73cb566c-59cd-4eba-aaf3-62cbca78e872" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4185,7 +705,7 @@ "nosniff" ], "Date": [ - "Mon, 11 Oct 2021 09:54:48 GMT" + "Thu, 27 Jul 2023 09:39:14 GMT" ], "Expires": [ "-1" @@ -4200,9 +720,9 @@ ], "Names": { "Test-CreateClusterWithRelayOutoundAndPrivateLink": [ - "hdi-ps-test8856", - "group-ps-test8097", - "storagepstest7167" + "hdi-ps-test1914", + "group-ps-test8628", + "storagepstest8169" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithScheduleBasedAutoscale.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithScheduleBasedAutoscale.json index f4d6b60a0030..8fd476f525f7 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithScheduleBasedAutoscale.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightClusterTests/TestCreateClusterWithScheduleBasedAutoscale.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test5229?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test2029?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QyMDI5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "8bd2350f-970f-43a2-a56d-7d61ea8eef4d" + "18b19adb-edc5-44c3-98fc-b9bc775d9a93" ], "Accept-Language": [ "en-US" @@ -14,8 +14,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "ea36ef83-487f-42ba-82fc-6a7d0f4f75aa" + "3a0c5abb-694e-4a4c-b3da-ec6da6bf7fad" ], "x-ms-correlation-request-id": [ - "ea36ef83-487f-42ba-82fc-6a7d0f4f75aa" + "3a0c5abb-694e-4a4c-b3da-ec6da6bf7fad" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091659Z:ea36ef83-487f-42ba-82fc-6a7d0f4f75aa" + "KOREASOUTH:20230724T021914Z:3a0c5abb-694e-4a4c-b3da-ec6da6bf7fad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:16:59 GMT" + "Mon, 24 Jul 2023 02:19:14 GMT" ], "Content-Length": [ "187" @@ -63,16 +63,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229\",\r\n \"name\": \"group-ps-test5229\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test2029\",\r\n \"name\": \"group-ps-test2029\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.Storage/storageAccounts/storagepstest3038?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMwMzg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test2029/providers/Microsoft.Storage/storageAccounts/storagepstest1530?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QyMDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDE1MzA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "ef5b526a-7c78-4c9a-af0d-5b94979bd4be" + "dcb9683a-38db-43e4-97f1-37fedc2615d4" ], "Accept-Language": [ "en-US" @@ -80,8 +80,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/55d7cd38-4558-4f55-8844-9d94ef8e9660?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/f316396f-3f4c-4a0a-8084-c9be8aa30773?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "55d7cd38-4558-4f55-8844-9d94ef8e9660" + "f316396f-3f4c-4a0a-8084-c9be8aa30773" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,19 +114,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "61e0ec54-324b-4169-8295-153713539f0b" + "398969f4-36cd-4a1f-b1a0-53f86b4a2bfb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091704Z:61e0ec54-324b-4169-8295-153713539f0b" + "KOREASOUTH:20230724T021924Z:398969f4-36cd-4a1f-b1a0-53f86b4a2bfb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:17:03 GMT" + "Mon, 24 Jul 2023 02:19:23 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,15 +142,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/55d7cd38-4558-4f55-8844-9d94ef8e9660?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy81NWQ3Y2QzOC00NTU4LTRmNTUtODg0NC05ZDk0ZWY4ZTk2NjA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/f316396f-3f4c-4a0a-8084-c9be8aa30773?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9mMzE2Mzk2Zi0zZjRjLTRhMGEtODA4NC1jOWJlOGFhMzA3NzM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -162,7 +162,7 @@ "no-cache" ], "x-ms-request-id": [ - "5788d52c-5ff9-4ce3-9afa-eb6736d2ff37" + "28f496f8-d0e5-466b-b204-a480905909e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,19 +171,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11997" ], "x-ms-correlation-request-id": [ - "3f454c4c-244a-43c1-b05f-8dc973f5c18a" + "8a6c95f1-7c1e-4882-9774-2c308f15dbf8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091721Z:3f454c4c-244a-43c1-b05f-8dc973f5c18a" + "KOREASOUTH:20230724T021941Z:8a6c95f1-7c1e-4882-9774-2c308f15dbf8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:17:21 GMT" + "Mon, 24 Jul 2023 02:19:41 GMT" ], "Content-Length": [ "1384" @@ -195,16 +195,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.Storage/storageAccounts/storagepstest3038\",\r\n \"name\": \"storagepstest3038\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T09:17:01.9027236Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T09:17:01.9027236Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-04-06T09:17:01.5589726Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3038.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3038.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3038.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest3038.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest3038-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest3038-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest3038-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test2029/providers/Microsoft.Storage/storageAccounts/storagepstest1530\",\r\n \"name\": \"storagepstest1530\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T02:19:21.9629383Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T02:19:21.9629383Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-24T02:19:21.6192208Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest1530.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest1530.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest1530.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest1530.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest1530-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest1530-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest1530-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.Storage/storageAccounts/storagepstest3038/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMwMzgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test2029/providers/Microsoft.Storage/storageAccounts/storagepstest1530/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3QyMDI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDE1MzAvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "e02ec1a9-e848-4ebd-b6b4-d20156fa5a01" + "ded9fb55-92eb-4421-a8c0-d7f587c80303" ], "Accept-Language": [ "en-US" @@ -212,8 +212,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "949bafd5-d40a-4e3c-a2af-c30af9fe20e4" + "5116d65e-22e3-410c-a3bc-b0e02582be1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,19 +234,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "f52d7634-c52e-49bd-890f-a206bae5672b" + "d9b8bf21-d3e4-48cf-b60c-90919fbeb55e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091731Z:f52d7634-c52e-49bd-890f-a206bae5672b" + "KOREASOUTH:20230724T021946Z:d9b8bf21-d3e4-48cf-b60c-90919fbeb55e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:17:31 GMT" + "Mon, 24 Jul 2023 02:19:45 GMT" ], "Content-Length": [ "288" @@ -258,2384 +258,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"knOCRi/Lglz0nbViaSIfXQ0LQw4b+H5ZqVFweFB10rLlD5O/diUaD4I3Y+DLAr1gU+oubD2sbAlt+ASt1HbVNg==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"6h0u6Quhn40s/KRqRC5FkFZGdjKgy2Lx7Vv2bbKJud+2gKVmy/KWsnL+XpDoimj4yZk8NaJv9cBl+AStV9iz5Q==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b2a6a002-3b7f-45d2-81e1-d34abdd074cf" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "664b8a5b-8657-4d39-a34b-81fa2235603b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091732Z:664b8a5b-8657-4d39-a34b-81fa2235603b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:17:32 GMT" - ], - "Content-Length": [ - "105467" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D15_v2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E48A_V4\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_F1\",\r\n \"STANDARD_F16\",\r\n \"STANDARD_F2\",\r\n \"STANDARD_F4\",\r\n \"STANDARD_F8\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E48a_v4\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"4.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_D15_V2\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D15_v2 (20 cores, 143360 MB)\",\r\n \"maxDataDiskCount\": 40,\r\n \"memoryInMb\": 143360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1024000,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"STANDARD_F1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F1 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 16384,\r\n \"webWorkerResourceDiskSizeInMb\": 16384\r\n },\r\n {\r\n \"name\": \"STANDARD_F16\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F16 (16 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 262144,\r\n \"webWorkerResourceDiskSizeInMb\": 262144\r\n },\r\n {\r\n \"name\": \"STANDARD_F2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 32768,\r\n \"webWorkerResourceDiskSizeInMb\": 32768\r\n },\r\n {\r\n \"name\": \"STANDARD_F4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F4 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 65536,\r\n \"webWorkerResourceDiskSizeInMb\": 65536\r\n },\r\n {\r\n \"name\": \"STANDARD_F8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F8 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 131072,\r\n \"webWorkerResourceDiskSizeInMb\": 131072\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E48a_v4 (48 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"East US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2963" - ] - }, - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"08:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3038.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test5894\",\r\n \"key\": \"knOCRi/Lglz0nbViaSIfXQ0LQw4b+H5ZqVFweFB10rLlD5O/diUaD4I3Y+DLAr1gU+oubD2sbAlt+ASt1HbVNg==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.Storage/storageAccounts/storagepstest3038\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"03ed6b09-a277-4e1d-ba5f-69e34f874f48\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "ad781c7d-3b17-4c4a-96d1-e5285f3ebf4e" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "746a7414-1104-44ff-bc38-3c2c5436840b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091738Z:746a7414-1104-44ff-bc38-3c2c5436840b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:17:38 GMT" - ], - "Content-Length": [ - "2236" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894\",\r\n \"name\": \"hdi-ps-test5894\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"03ed6b09-a277-4e1d-ba5f-69e34f874f48\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"3dddc4918da34ca883ec150e819670b9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"08:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2023-04-06T09:17:37.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3038.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.Storage/storageAccounts/storagepstest3038\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test5894\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "58245bcc-043f-496b-b3be-f54899cc3ace" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0077ba64-3f6f-4aa1-9261-64691dae61cc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091809Z:0077ba64-3f6f-4aa1-9261-64691dae61cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:18:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c1b3f95d-2fb9-4524-bcc9-d447e18d19c0" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3cbf57d9-0e07-4796-912c-39c40e84389f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091840Z:3cbf57d9-0e07-4796-912c-39c40e84389f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:18:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "294c5ef7-3cd4-44e6-9a9b-119819fe16b6" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a1ca4cb9-7d1d-4abd-80d3-6a3f526061a1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091910Z:a1ca4cb9-7d1d-4abd-80d3-6a3f526061a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:19:10 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "08ded88d-496a-4e2f-b916-29cb0522c692" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "22319df0-1412-4db9-81b6-93d7c96ac9bd" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T091941Z:22319df0-1412-4db9-81b6-93d7c96ac9bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:19:40 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd2f5eaa-9547-4acd-87df-21b4700550c9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "fcd5f2a6-912b-428e-9e46-08f9b2f2f58a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092012Z:fcd5f2a6-912b-428e-9e46-08f9b2f2f58a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:20:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "caf406b5-433d-4a5c-af45-5c220b6a8ab3" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "ae85d1f3-b9cf-4dd4-ab30-97750a428e8d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092042Z:ae85d1f3-b9cf-4dd4-ab30-97750a428e8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:20:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9126cbf9-6b45-47e3-954e-2a070b307209" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d4b4bfef-9386-4d79-bf4b-546f1a4ff4aa" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092113Z:d4b4bfef-9386-4d79-bf4b-546f1a4ff4aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:21:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e5e4ff19-883e-4516-a735-3e41ca78285f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5ee6df05-c592-45d1-98d3-b57b8ab3795e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092143Z:5ee6df05-c592-45d1-98d3-b57b8ab3795e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:21:42 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "aeff2541-ab10-4865-a784-ae44dec86b08" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "180f9775-f899-4324-8889-87539d52b688" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092214Z:180f9775-f899-4324-8889-87539d52b688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:22:14 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0ab784d1-f796-4338-81e1-faffab137c36" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "fd6f02c4-51aa-4794-aa65-f4bc420d6459" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092244Z:fd6f02c4-51aa-4794-aa65-f4bc420d6459" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:22:44 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bab5e499-320f-4d1a-9944-2a0868db4250" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "2ea7f9be-0aa3-4d7a-b4c7-633d0f623c69" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092315Z:2ea7f9be-0aa3-4d7a-b4c7-633d0f623c69" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:23:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c7091121-c361-4578-9fa5-6670b835d128" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "91802430-348c-410b-b2fe-375125696f79" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092346Z:91802430-348c-410b-b2fe-375125696f79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:23:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cb5f99de-91ac-4c96-8d2d-d3087bcb7a9b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a4813294-6084-4f09-b68c-5f25f8196be7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092417Z:a4813294-6084-4f09-b68c-5f25f8196be7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:24:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8832b620-c255-4853-b53b-ce2b82486531" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "c2737bea-8756-48ea-ad20-76dc1888eeb3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092448Z:c2737bea-8756-48ea-ad20-76dc1888eeb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:24:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3a4ba81c-446c-4944-bdaf-c4531e267d25" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0cf7043c-580f-47ba-a30c-791258ebd0a3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092518Z:0cf7043c-580f-47ba-a30c-791258ebd0a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:25:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7f055752-e860-491f-afc8-27a91e42b551" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8e39f682-ee14-45e9-a12e-0de63c28c284" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092549Z:8e39f682-ee14-45e9-a12e-0de63c28c284" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:25:48 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1a783235-997a-4ad9-bb4d-a759c1fe58ce" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "081259ad-ae7a-439b-a2a2-880a0d0badae" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092619Z:081259ad-ae7a-439b-a2a2-880a0d0badae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:26:18 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0390f317-5dc4-4f93-b78f-a0e6c2b4c98c" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "32e3ef7c-ea96-4564-bc12-1937645b4b12" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092650Z:32e3ef7c-ea96-4564-bc12-1937645b4b12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:26:50 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d44672b2-6a2c-49ed-a3f8-7a5d9a154095" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "ccaa3638-3c72-407d-8a12-2339ec6c1233" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092720Z:ccaa3638-3c72-407d-8a12-2339ec6c1233" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:27:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6fcfb22c-b239-4368-9b9c-6647216c8127" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "1397c986-36d2-4bd8-9d57-35cf245eb89b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092751Z:1397c986-36d2-4bd8-9d57-35cf245eb89b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:27:50 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ba052b5b-8216-4df9-af03-d9012494c635" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "ef1929b3-dd80-4890-acc9-348a239990ca" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092821Z:ef1929b3-dd80-4890-acc9-348a239990ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:28:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "254b1f54-ff28-4a5e-b08e-950c61d060bd" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "09c64f68-61fd-4609-a2ac-d2a6e6338826" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092852Z:09c64f68-61fd-4609-a2ac-d2a6e6338826" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:28:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cf9ce860-7245-402e-a2ce-d104b265650b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "15da5676-e2ae-4111-9fea-6ff6c864de75" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092923Z:15da5676-e2ae-4111-9fea-6ff6c864de75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:29:22 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3c255b8a-50cd-4c91-8f41-46d39478ef3d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6593adc8-b0d9-4f02-bbfc-0b266b45b45f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T092953Z:6593adc8-b0d9-4f02-bbfc-0b266b45b45f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:29:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e3e471a8-3b21-43b1-866a-cf52c7164da6" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7588651d-77f6-438c-a803-206d09c5629d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093024Z:7588651d-77f6-438c-a803-206d09c5629d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:30:24 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d965b7c3-53b6-47bd-b4f9-7e87f76ff9d3" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "1bef15e1-01fb-45ee-a99b-09ea524613e3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093055Z:1bef15e1-01fb-45ee-a99b-09ea524613e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:30:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8744554e-f142-48dd-9ead-1e84575a6dfe" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b441dff0-475e-4e95-a3ec-e2f4a355772d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093125Z:b441dff0-475e-4e95-a3ec-e2f4a355772d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:31:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "edaacd79-06fa-49cd-9ac1-a1354d775abc" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6cae254b-4792-46c9-807e-cd93da63f500" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093156Z:6cae254b-4792-46c9-807e-cd93da63f500" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:31:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "222e886f-7a52-4813-a33d-ddfcda6460d0" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "49535579-0ca3-46c4-82f3-f557935cb4d1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093226Z:49535579-0ca3-46c4-82f3-f557935cb4d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:32:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5NC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3b1bba21-dbd0-4727-92e3-9080554e0dd4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e3639073-4312-408d-b029-851929b3e7a6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093257Z:e3639073-4312-408d-b029-851929b3e7a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:32:56 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "09a78005-826c-45b1-971c-b0517a2a434d" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6a4a71e2-a0b6-462b-a368-9e0511888037" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "817e9428-1438-4806-87e4-b20eaefc4d73" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093258Z:817e9428-1438-4806-87e4-b20eaefc4d73" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:32:57 GMT" - ], - "Content-Length": [ - "2456" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894\",\r\n \"name\": \"hdi-ps-test5894\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"03ed6b09-a277-4e1d-ba5f-69e34f874f48\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"3dddc4918da34ca883ec150e819670b9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"08:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T09:17:37.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5894-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5894.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3038.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.Storage/storageAccounts/storagepstest3038\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test5894\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece7a42d-ce5d-4cfa-9567-c6e8abbd53f8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "4b6e76bc-a156-4e74-92f1-504019879711", - "4d7ad5a6-8ba3-4c65-a864-e28faee1ee1f", - "f957590a-2154-4ae1-aaa4-95033138a8c6", - "7deab703-03da-460b-9269-d71396545873", - "8df01908-d2d0-41aa-b854-06b1d0f3d6af", - "d5500f0e-e3bd-43a8-97b7-b387ac1712cb", - "1994e96d-9943-472d-844c-8c5869d1c5a8", - "cf7579e4-d090-469b-a9ba-6944305ee96c", - "c6e7badb-22cf-4755-9ec1-bc4b63841834", - "d5fd67a4-63b2-4ee9-987c-404346daacee", - "6ab948f9-59d2-4a59-b60e-296b21e6baf0", - "10313d1f-30df-4c19-bcca-04e6b5206f14", - "d082a8c6-72ee-423b-bae9-d4f71548e6fb", - "aa98852f-cd1f-411e-86b7-b65bbacca79b" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "e5bf72f5-ee3e-4398-aa07-67d510c67aa9" - ], - "x-ms-correlation-request-id": [ - "e5bf72f5-ee3e-4398-aa07-67d510c67aa9" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093313Z:e5bf72f5-ee3e-4398-aa07-67d510c67aa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:33:12 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "280575" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.HDInsight/clusters/xinli1debugipsec\",\r\n \"name\": \"xinli1debugipsec\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"263aad4e-6765-495a-9ba6-c5edab28ef5a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a836521cad934fc89c517a90ae892a7a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-27T07:38:27.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1debugiphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.Storage/storageAccounts/xinli1debugiphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1debugipsec-2023-03-27t07-37-02-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.HDInsight/clusters/test-denyinbound\",\r\n \"name\": \"test-denyinbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Australia East\",\r\n \"etag\": \"17ac0a46-8e67-414f-bb3c-ca5c4bd35712\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6d2976b47ed470d9b5f11bb7d81db2b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-29T11:13:22.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdenyinbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Storage/storageAccounts/testdenyinbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-denyinbound-2023-03-29t11-04-30-897z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-outbount-cvrio4\",\r\n \"name\": \"hadoop-outbount-cvrio4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"b577a3fd-3386-4a5e-9149-a8ae7a809d12\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6fcf0aa36cce419da9a9e7222cf4533c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T12:55:12.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"192.168.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-outbount-cvrio4-2023-02-27t12-53-32-920z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-sentinel\",\r\n \"name\": \"hadoop-sentinel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"84ed899b-d6f7-481e-9976-f5859cc7ddce\",\r\n \"tags\": {\r\n \"SENTINAL\": \"DONTDELETE\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"053fc6fe2d3a4196b4ed8c5845b6a297\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-02T13:28:33.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-sentinel-2023-01-02t13-26-06-000z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdptestcluster1\",\r\n \"name\": \"hdptestcluster1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"6294e7eb-d942-4da0-bb22-69ac8aa8ab10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"711698d20f7d4e559b55785590fdc382\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T20:31:14.29\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdptestclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdptestclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdptestcluster1-2023-02-16t20-29-01-114z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.HDInsight/clusters/srinihadooptest\",\r\n \"name\": \"srinihadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"6799f8b5-f6b7-490b-bfce-c8e96c0a69d8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4a97d33a74354cb8b505314852fd67dc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T06:09:38.023\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinihadooptehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.Storage/storageAccounts/srinihadooptehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinihadooptest-2023-04-03t06-06-59-470z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumanatahivetest\",\r\n \"name\": \"sumanatahivetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"e0ab8abe-ea66-4786-a963-b8bd59cd68f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0752c11287947f6ad407dc35ef9f0a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T10:25:01.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 42\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumanatahivetest-2023-02-23t10-13-41-228z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantahadooptest\",\r\n \"name\": \"sumantahadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"3e2ef5dc-b06c-49f1-a0f5-1064c87c2904\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a3a347bee65443c5b4ffc02c295dca36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T06:32:06.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantahadooptestcluste-2023-03-24t06-28-54-846z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantatestsparkcluster\",\r\n \"name\": \"sumantatestsparkcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"eadbad16-940e-4ba1-8d10-e35b31b3038c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7571860162e244c9ac5f369c6a6182bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-26T02:19:04.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantatestsparkcluster-2023-02-26t02-15-03-734z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryahadoop\",\r\n \"name\": \"suryahadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"efc66412-384f-478b-98b8-b9c5370b1a9e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b6b32d28d9e4bcf81e16dcceb9d7c90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T09:31:39.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryahadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryahadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryahadoop-2023-02-16t09-30-23-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryaspark\",\r\n \"name\": \"suryaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"4e2c5b28-0661-4614-9557-60741cb699d4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f34179e0af574bd990a4a80e0f850420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T09:51:40.6\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryaspark-2023-02-23t09-49-41-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.HDInsight/clusters/andarmod-march2023\",\r\n \"name\": \"andarmod-march2023\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58889b01-8efb-45b7-a3da-3c1e8eea158f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b47d639b35f94be4955cc2dec8b2320d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-07T16:54:08.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodmarchhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.Storage/storageAccounts/andarmodmarchhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-march2023-2023-03-07t16-51-41-821z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyanipsectest1\",\r\n \"name\": \"chaoyanipsectest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e788daa3-aa02-49d3-b558-29403e44da93\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.5.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2207131812.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"367ac0f996a0421bbce329925e291b05\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-11T08:43:11.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyanipsecthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyanipsecthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyanipsectest-2022-08-11t08-39-02-672z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyantesting1\",\r\n \"name\": \"chaoyantesting1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"29167e66-afe2-4c5f-b8b7-00b165d9a72e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"43fb4c0684964cc09e2bb85da780e87b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-05-19T05:33:22.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyantestinhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyantestinhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyantesting-2022-05-19t05-31-45-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalhbasecluster\",\r\n \"name\": \"faisalhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c2d260b3-7c88-4293-a197-3bd01ba5cba9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"fdd6f2f04e214787a91ab03d8c70e43c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-09T18:59:29.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"Execution of the following scripts failed :- Custom\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalhbasecluster-2023-02-09t18-57-54-885z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalkafkacluster\",\r\n \"name\": \"faisalkafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6a22e8d4-9a64-4f7c-81e0-dbc10fdc4396\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"f96f014c44104e059b9b76cdf5786212\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:32:47.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalkafkaclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalkafkaclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalkafkaclist-2023-02-15t17-31-20-101z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsparkthreedotone\",\r\n \"name\": \"faisalsparkthreedotone\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"28e18c5f-d479-4420-a009-f239f0866d77\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"08a08b13feb040f695fe823f9cd4ce0b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T15:01:25.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsparkthhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsparkthhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsparkthreedotone-2023-02-16t15-00-02-589z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprk3dot1\",\r\n \"name\": \"faisalsprk3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3e344fb9-ae16-4de5-9d8a-88f3492631f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b19b209e520840a798c9fdf0853ca32d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-14T17:03:17.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprk3dohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprk3dohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprk3do-2023-02-14t17-01-00-509z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprkcluster3dot1\",\r\n \"name\": \"faisalsprkcluster3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"293ccb46-de93-4a32-a7db-1b7e7354530b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"40de045ed14244048ed41c11aa55ce6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:31:11.627\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprkcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprkcluster-2023-02-15t17-29-17-755z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.HDInsight/clusters/for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"name\": \"for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fbca8ad-f6d9-459a-85de-2d41bbc13acd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"218204ad46f5479f8700266ad08536ab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T02:22:59.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"forhditestspahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.Storage/storageAccounts/forhditestspahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"forhdi-test-spark-24-do-2023-02-15t02-20-51-216z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894\",\r\n \"name\": \"hdi-ps-test5894\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"03ed6b09-a277-4e1d-ba5f-69e34f874f48\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"3dddc4918da34ca883ec150e819670b9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"08:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T09:17:37.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5894-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5894.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest3038.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.Storage/storageAccounts/storagepstest3038\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test5894\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.HDInsight/clusters/hdi-spark-test-eastus\",\r\n \"name\": \"hdi-spark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"de91a5d7-3f91-49ad-a023-99cceacd47f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"46ee674f530e4c6eac0bf40ca8fa6b13\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T18:25:18.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-spark-test-eastus-2023-02-23t18-23-27-300z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.HDInsight/clusters/jacky-spart-cluster\",\r\n \"name\": \"jacky-spart-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f93e581f-303e-40f6-aa2e-e2af037d2015\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ed0cbe2a53f6451a9a9a51943b3b7e4c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 1,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:34:56.1\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jackyspartcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.Storage/storageAccounts/jackyspartcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jacky-spart-cluster-2023-03-10t07-31-05-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/kafkajartest\",\r\n \"name\": \"kafkajartest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5dba8150-35d1-4431-9a33-1f6e645fb976\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"afa6e9ba6cb04b3dbb487637e4b4971c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T15:56:24.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafkajartesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/kafkajartesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafkajartest-2023-03-24t15-54-14-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/rampuvhbasecluster\",\r\n \"name\": \"rampuvhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"112945a7-a3d1-4600-8ae7-1d8f03309d10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"cce431c503424ea5a3c0d103329b7542\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-17T22:57:31.78\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rampuvhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/rampuvhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"rampuvhbasecluster-2023-01-17t22-44-44-409z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.HDInsight/clusters/shankarhadooptestcluster\",\r\n \"name\": \"shankarhadooptestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06e26256-25d4-4fba-9648-30f7078f0840\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c164b1edd07f4b3fbb0787d101784942\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T01:28:16.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shankarhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shankarhadoop-2023-03-23t01-23-49-690z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n },\r\n {\r\n \"name\": \"shankarhadoophdistorage2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark2d4\",\r\n \"name\": \"spark2d4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1153c11a-2a85-46e7-a734-52015dc5868d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c883f1ec21bc4c849523971654062efd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T07:42:07.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark2d4hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark2d4hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark2d4-2023-02-15t07-39-53-493z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark3d1\",\r\n \"name\": \"spark3d1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4684704b-9b54-4c86-af1c-7ef79b87b2aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7e791962c38f418b9474926b349621df\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-08T09:41:23.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark3d1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark3d1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark3d1-2023-03-08t09-39-29-001z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.HDInsight/clusters/sparkclustertest\",\r\n \"name\": \"sparkclustertest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8b31425f-33d6-4fb4-a949-8ecf8ab6931b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a49afaa3cee6473ea18436341998a8ca\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T05:40:39.997\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparkclusterteststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.Storage/storageAccounts/sparkclusterteststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparkclustertest-2023-02-20t05-37-29-162z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/sparktezviewtesting\",\r\n \"name\": \"sparktezviewtesting\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"51679a92-9088-4c04-a123-98b0d47a2f1f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"52575b0c9da14a91b6b0164b881fc0bd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T21:40:20.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparktezviewthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/sparktezviewthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparktezviewtesting-2023-04-03t21-38-23-344z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.HDInsight/clusters/sultan-hdi-cluster-1\",\r\n \"name\": \"sultan-hdi-cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8c758461-3e41-4c18-a9f3-5ce77e05a7bf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"63513e3e784441259bb73ad58c602241\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T15:51:03.267\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sultanhdiclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Storage/storageAccounts/sultanhdiclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sultan-hdi-cluster-2023-04-03t15-44-34-333z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.HDInsight/clusters/testhadoopv-rchandekar\",\r\n \"name\": \"testhadoopv-rchandekar\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"517c95d3-0333-442e-90fc-49c3aa0474c5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbdf8584bd7146bfa881a9f6d0edb126\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-19T09:11:15.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhadoopvrchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.Storage/storageAccounts/testhadoopvrchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhadoopv-rchandekar-2023-02-19t09-08-45-240z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/testsprk1\",\r\n \"name\": \"testsprk1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"80c39751-b509-48cc-b33b-f426446131c6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"00161d115cb043148e4ee70f3480841a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-22T15:55:55.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsprk1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/testsprk1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testsprk1-2023-03-22t15-53-40-199z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut_res_group_extremelengthextremelengthextremelengthextremelengthextremelengthextremelen/providers/Microsoft.HDInsight/clusters/wut-cluster-extremelengthextremelengt1\",\r\n \"name\": \"wut-cluster-extremelengthextremelengt1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ef9588d7-7391-4786-ac73-8a3bd685c737\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3438ce92023a43bfb69f13dd19abe1a1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-03T07:59:34.263\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-cluster-extremeleng-2023-03-03t07-50-04-213z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi1\",\r\n \"name\": \"wut-msi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"cbe06749-73db-43d4-bc7d-c659f66fae76\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3ab1d1b9f8f74bfe9e47b7f47bb2d484\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T10:21:20.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi1-2023-02-16t10-18-25-176z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi-with-disk\",\r\n \"name\": \"wut-msi-with-disk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"abce6322-b4bf-459b-8bf2-76d00b710b0b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"463aa4295be340609178d8503f319c5e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T07:17:39.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi-with-disk-2023-02-20t07-16-09-847z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1adls04191\",\r\n \"name\": \"x1adls04191\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b07b7393-e919-4fa3-a498-53a294c6c378\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"8e19fc8c328c4078aeaee5eead0dfba3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-04-19T05:40:17.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1adlsgen20419.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1adlsgen20419\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/x1usermsi0924\",\r\n \"key\": null,\r\n \"fileSystem\": \"x1adls04191fs\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/microsoft.managedidentity/userassignedidentities/x1usermsi0924\": {\r\n \"principalId\": \"048a9639-b7e1-4671-b9aa-2bab056c5b3b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.HDInsight/clusters/xinli1agentdebug\",\r\n \"name\": \"xinli1agentdebug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f2a8f840-0c8b-4588-af98-c0471c75f525\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e231aeff71145208dfd23b216e5167c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-28T02:48:54.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.39.1.25\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1agentdehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Storage/storageAccounts/xinli1agentdehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1agentdebug-2023-02-28t02-46-13-138z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-ssh-test\",\r\n \"name\": \"yalu-ssh-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"11482072-35bb-4f70-8c7c-d83fbd365235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"535fba725345441f84453158ed58bb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-03-28T05:51:27.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusshtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yalusshtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-ssh-test-2022-03-28t05-50-12-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yaluversiontest\",\r\n \"name\": \"yaluversiontest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8a084b25-3fdf-41dc-8524-ff314d5736eb\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2207131812.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"165dba2239b4435fb837bbb28cd94562\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-26T04:01:17.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluversiontehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluversiontehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yaluversiontest-2022-08-26t03-59-45-628z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweiuseprod\",\r\n \"name\": \"ziweiuseprod\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"a1c924a7-ef70-424c-a707-3acea34ed284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f5ed2b902a8c4148aaa06b2083c5fcf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-20T13:26:43.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweiuseprodhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweiuseprodhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweiuseprod-2022-02-20\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdihiveinteractivequery\",\r\n \"name\": \"hdihiveinteractivequery\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"e0406da8-4e88-47be-9046-bd73cc55730a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b630111eea894ea2b83b9927fd696708\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-06T19:40:13.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 18\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdihiveinterahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdihiveinterahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdihiveinteractivequery-2023-01-06t19-33-23-190z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.HDInsight/clusters/jairokafkacluster\",\r\n \"name\": \"jairokafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"72468a3d-3ff2-41a8-a319-0380807b9fda\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e4d6eaf7f2a84e9c8f73ecf5f916659c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T17:58:43.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jairokafkacluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.Storage/storageAccounts/jairokafkacluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jairokafkacluster-2023-02-27t17-54-29-913z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/zzzz-shangwei-test-pe\",\r\n \"name\": \"zzzz-shangwei-test-pe\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bd656217-7df4-4dbd-8767-deb0aa1007b5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2208310943.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"01bc6a206aea46a0844a6ba5e4c1e4ce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-09-28T11:53:42.887\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-test-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"asd-shangwei-test-pe-2022-09-28t11-39-57-881z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-test-msi\": {\r\n \"principalId\": \"2f5a5662-86b4-4c5f-a3b8-eba4db9b5ee0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.HDInsight/clusters/hiveserverinteractivetestfeb20\",\r\n \"name\": \"hiveserverinteractivetestfeb20\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"6cabab4b-9e77-4a77-b9f6-e36fbb52d701\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f3518a9df252426a87aaabe174d34549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T04:55:42.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hiveserverinthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.Storage/storageAccounts/hiveserverinthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hiveserverinte-2023-02-20t04-52-17-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.HDInsight/clusters/shangwei-poc-hdi\",\r\n \"name\": \"shangwei-poc-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4dc7b507-2bf7-47dd-baf5-fe0fd82a7718\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e97453096a1423fae7bf95c28faf715\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T13:24:27.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipochdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Storage/storageAccounts/shangweipochdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-poc-hdi-2023-02-15t13-22-36-476z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.HDInsight/clusters/test-outbound\",\r\n \"name\": \"test-outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"6feb5fe3-fa25-4116-b17b-4d0771b02ff3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"aa331a83baf348149ce4f24b5ab04f7e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-14T09:42:47.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.3.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsheinoutbound.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Storage/storageAccounts/testsheinoutbound\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-outbound-2023-03-14t09-36-58-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweinewregion\",\r\n \"name\": \"ziweinewregion\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany North\",\r\n \"etag\": \"fcd8e6b6-92bf-4c33-a1ae-7fddaec7a588\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b4a777151b6a4402bc22c9d9224d01a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-06-09T06:27:54.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweinewregiohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweinewregiohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweinewregion-2022-06-09t06-26-13-110z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip1\",\r\n \"name\": \"wuttesttip1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"c643f24b-ab3b-446a-a944-cc22976b6d5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6878300ba5904fee8d37ea4c49fd657e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T08:05:36.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220830tip1\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip2\",\r\n \"name\": \"wuttesttip2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c6a1e318-6b1a-4ee7-9678-3c45a460054a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5022c17e86c04151b52efa226c781236\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T09:04:25.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220831tip2\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestec2023021501\",\r\n \"name\": \"zzytestec2023021501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"f80298a0-42c9-45fb-bcbd-c21949a368e6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302140238.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab068287b1c54e2e86f3cd009a2994f7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-02-15T05:51:53.337\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestec2023hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestec2023hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestec20230214-2023-02-15t05-48-55-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytesteccert003\",\r\n \"name\": \"zzytesteccert003\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"717d837f-3ba3-4b6a-8316-488824d78c8a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"926003a85ef746a79582414d9d0f8aef\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-01-30T08:53:33.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesteccerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesteccerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytesteccert003-2023-01-30t08-52-19-685z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.HDInsight/clusters/alaw-hadoop\",\r\n \"name\": \"alaw-hadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"a644024e-45da-4b23-8347-7ccadb095d46\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"acf2f5f3b77d49eda85a0d2ba1854d3e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-02T02:05:48.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"alawhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.Storage/storageAccounts/alawhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"alaw-hadoop-2023-03-02t02-05-00-094z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy12testclimsgraph\",\r\n \"name\": \"zzy12testclimsgraph\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b1954f3b-435e-4d0e-8129-4e82dd07e189\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"30cbd2b68eaf4d899a1f88852ae30d0a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-05-18T04:00:46.723\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://lanjuntesthdihdistorage.blob.core.windows.net/ssh/changecredentials.sh. Exception message: Script URI cannot be retrieved correctly. HTTP Status code: Conflict.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy12testclimsgraph\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-01\",\r\n \"name\": \"shiyi-pl-hadoop-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29990d6a-6caa-4b11-82f6-30fea35a6fc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c2e3babae5ec4ee08a36c2c90894eced\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:41:45.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 8\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa01.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa01\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-01\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-02\",\r\n \"name\": \"shiyi-pl-hadoop-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"fdf7f0f4-800a-45fc-8b4f-5357b8b1c3d2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2fd6536c8ce148bda284f73d7444d400\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f8\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:46:03.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-03\",\r\n \"name\": \"shiyi-pl-hadoop-03\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"3b96fb85-fa13-40f2-8abe-901ca94902e0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"11f0972bacd44965a373acd717924ecd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f16\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:14:35.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa03.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa03\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-03\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-04\",\r\n \"name\": \"shiyi-pl-hadoop-04\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"83d4b2bd-a438-4884-b578-07fd80427e3d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c1fc40e15a2d41dfab258e833e6ba850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:16:52.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa04.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa04\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-04\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-05\",\r\n \"name\": \"shiyi-pl-hadoop-05\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"c4b9f731-3773-4ff7-b484-5b0ff3394ff7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c60d7a208817420d8320be7c677ab2f2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:24:54.443\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 128\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa05.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa05\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-05\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-06\",\r\n \"name\": \"shiyi-pl-hadoop-06\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"302f52c5-59fc-4636-938d-d491fe9920fc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8247d20bc8e448279746c2b62ce805b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:19:35.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa06.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa06\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-06\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-07\",\r\n \"name\": \"shiyi-pl-hadoop-07\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f4ef091a-a24c-417c-9962-bcfc8b02de8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"239c19a2c1554ed7862044e0e4703f22\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:37:41.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa07.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa07\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-07\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-08\",\r\n \"name\": \"shiyi-pl-hadoop-08\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f76467ac-9a10-4174-b85a-e96845254047\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"d8fda12bd8b444b186f37dea68622d31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:39:46.89\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa08.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa08\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-08\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-09\",\r\n \"name\": \"shiyi-pl-hadoop-09\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29bfd3d6-d1bb-4b99-9bce-f4c149495311\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b0602bd423544d729d56f6dd50a5fe78\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:15.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa09.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa09\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-09\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-10\",\r\n \"name\": \"shiyi-pl-hadoop-10\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8e41f979-734a-47e5-a6a6-ef6a80a2a9df\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1b548cbfb8b24d46a360df3d6ccf07c8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:29.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa10.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa10\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-10\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-11\",\r\n \"name\": \"shiyi-pl-hadoop-11\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"d6696882-f688-4e87-bd74-b7e51b809d79\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4c8e5b20edca4aef98d5590715a9dd2c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:10.573\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa11.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa11\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-11\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-12\",\r\n \"name\": \"shiyi-pl-hadoop-12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7620fa29-cc62-4974-8540-bdfa2dc5f878\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9d2d4967c7a14a22ae8718988b6caa2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:25.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa12.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa12\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-12\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hbase-01\",\r\n \"name\": \"shiyi-pl-hbase-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8db0b47e-ec70-47c0-bfc8-1dec22d35b87\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"3b5e5a78385a4c0da678b1d30c0ca0b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:03:24.73\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 22\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhbase0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.Storage/storageAccounts/shiyiplhbase0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hbase-01-2023-03-20t02-57-30-182z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.HDInsight/clusters/shiyi-pl-hdp-3\",\r\n \"name\": \"shiyi-pl-hdp-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7d83c57b-727d-4610-b944-76bed3845d6e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"75d7946e29ae42c0b5be6919c1569cf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:30:56.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhdp3hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.Storage/storageAccounts/shiyiplhdp3hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hdp-3-2023-03-10t07-28-45-657z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hive-01\",\r\n \"name\": \"shiyi-pl-hive-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"1614b7e9-b8f2-439e-a31c-a9c568a69f39\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"e7f7e90b1ab34b6a8ab3d5475f3f3eb6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:10:23.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhive01hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.Storage/storageAccounts/shiyiplhive01hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hive-01-2023-03-20t03-06-54-850z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-01\",\r\n \"name\": \"shiyi-pl-kafka-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8f76ee5e-304f-4833-a2a0-725661b34f13\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"c8f68a7bb80b4f7b9dc5c2033af2da38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T05:44:19.98\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafka0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.Storage/storageAccounts/shiyiplkafka0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-01-2023-03-20t05-41-36-217z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-02\",\r\n \"name\": \"shiyi-pl-kafka-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"014feb11-1c70-4766-85b7-91f10423540d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"kafka\",\r\n \"componentVersion\": {\r\n \"kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"45d348febd6440b89502cb184a0ce201\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T09:33:10.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafkasa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.Storage/storageAccounts/shiyiplkafkasa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5229/providers/Microsoft.HDInsight/clusters/hdi-ps-test5894?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTg5ND9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece7a42d-ce5d-4cfa-9567-c6e8abbd53f8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/93e27124-d7b9-4d3f-b0b4-d7d52b688d47-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/93e27124-d7b9-4d3f-b0b4-d7d52b688d47-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "b8afeece-f0d0-49a7-aff6-c9eb5adb3dd9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "bf4ede41-7654-4c05-b627-a0b4cc51074b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093315Z:bf4ede41-7654-4c05-b627-a0b4cc51074b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:33:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/93e27124-d7b9-4d3f-b0b4-d7d52b688d47-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvOTNlMjcxMjQtZDdiOS00ZDNmLWIwYjQtZDdkNTJiNjg4ZDQ3LTAtcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece7a42d-ce5d-4cfa-9567-c6e8abbd53f8" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b5a3a53e-a89e-417a-8cbd-afca00b5f390" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a42da0a9-2005-4912-83a9-2ac891268fc0" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093415Z:a42da0a9-2005-4912-83a9-2ac891268fc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:34:15 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/93e27124-d7b9-4d3f-b0b4-d7d52b688d47-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy85M2UyNzEyNC1kN2I5LTRkM2YtYjBiNC1kN2Q1MmI2ODhkNDctMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece7a42d-ce5d-4cfa-9567-c6e8abbd53f8" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ebd13cc4-84c8-405d-b45f-822f31af1779" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "232c12ae-59fa-44d5-a141-e3346b6b7b2b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093415Z:232c12ae-59fa-44d5-a141-e3346b6b7b2b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 09:34:15 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test5229?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjI5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test2029?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3QyMDI5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestHeaders": { "x-ms-client-request-id": [ - "239540fc-6400-4a32-be22-347a9e81bbe8" + "f6dad594-8a2e-4a53-a414-a8a063058143" ], "Accept-Language": [ "en-US" @@ -2643,8 +275,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2656,7 +288,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2665,13 +297,13 @@ "14999" ], "x-ms-request-id": [ - "01cefc94-d955-447b-bde5-46601bd3d3fe" + "b4bcfc84-5e82-4b62-af45-cf7ab97ba824" ], "x-ms-correlation-request-id": [ - "01cefc94-d955-447b-bde5-46601bd3d3fe" + "b4bcfc84-5e82-4b62-af45-cf7ab97ba824" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093417Z:01cefc94-d955-447b-bde5-46601bd3d3fe" + "KOREASOUTH:20230724T023609Z:b4bcfc84-5e82-4b62-af45-cf7ab97ba824" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2680,7 +312,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:34:17 GMT" + "Mon, 24 Jul 2023 02:36:09 GMT" ], "Expires": [ "-1" @@ -2693,15 +325,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2713,7 +345,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2722,13 +354,13 @@ "11999" ], "x-ms-request-id": [ - "ffc0a66e-f9b8-41a9-b761-ed98dc4093c7" + "a8c570f4-de69-44ad-bfd3-a6b25f01acdf" ], "x-ms-correlation-request-id": [ - "ffc0a66e-f9b8-41a9-b761-ed98dc4093c7" + "a8c570f4-de69-44ad-bfd3-a6b25f01acdf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093432Z:ffc0a66e-f9b8-41a9-b761-ed98dc4093c7" + "KOREASOUTH:20230724T023625Z:a8c570f4-de69-44ad-bfd3-a6b25f01acdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2737,7 +369,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:34:32 GMT" + "Mon, 24 Jul 2023 02:36:25 GMT" ], "Expires": [ "-1" @@ -2750,15 +382,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2770,7 +402,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2779,13 +411,13 @@ "11998" ], "x-ms-request-id": [ - "d23f9d58-165d-4f17-8f4f-8417269fb146" + "45b217f2-1e11-4884-a95f-3ec049d622ad" ], "x-ms-correlation-request-id": [ - "d23f9d58-165d-4f17-8f4f-8417269fb146" + "45b217f2-1e11-4884-a95f-3ec049d622ad" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093447Z:d23f9d58-165d-4f17-8f4f-8417269fb146" + "KOREASOUTH:20230724T023641Z:45b217f2-1e11-4884-a95f-3ec049d622ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2794,7 +426,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:34:47 GMT" + "Mon, 24 Jul 2023 02:36:40 GMT" ], "Expires": [ "-1" @@ -2807,15 +439,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2827,7 +459,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2836,13 +468,13 @@ "11997" ], "x-ms-request-id": [ - "f6fc1008-e18f-4f2c-8940-144a917a504c" + "cf3f9203-25e1-4b39-b67b-ec5b07bbd563" ], "x-ms-correlation-request-id": [ - "f6fc1008-e18f-4f2c-8940-144a917a504c" + "cf3f9203-25e1-4b39-b67b-ec5b07bbd563" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093502Z:f6fc1008-e18f-4f2c-8940-144a917a504c" + "KOREASOUTH:20230724T023656Z:cf3f9203-25e1-4b39-b67b-ec5b07bbd563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2851,7 +483,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:35:01 GMT" + "Mon, 24 Jul 2023 02:36:55 GMT" ], "Expires": [ "-1" @@ -2864,15 +496,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2884,7 +516,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2893,13 +525,13 @@ "11996" ], "x-ms-request-id": [ - "317b5b97-3a7f-4b81-867f-e205441eac71" + "2ec4828a-3e55-423e-82b9-b8c3b0b45292" ], "x-ms-correlation-request-id": [ - "317b5b97-3a7f-4b81-867f-e205441eac71" + "2ec4828a-3e55-423e-82b9-b8c3b0b45292" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093517Z:317b5b97-3a7f-4b81-867f-e205441eac71" + "KOREASOUTH:20230724T023712Z:2ec4828a-3e55-423e-82b9-b8c3b0b45292" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2908,7 +540,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:35:17 GMT" + "Mon, 24 Jul 2023 02:37:11 GMT" ], "Expires": [ "-1" @@ -2921,15 +553,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2941,7 +573,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2950,13 +582,13 @@ "11995" ], "x-ms-request-id": [ - "5dbd0b91-5217-4a66-a137-95e0c92bb5d4" + "871c2f2e-d416-4c76-b637-0db135e45c7e" ], "x-ms-correlation-request-id": [ - "5dbd0b91-5217-4a66-a137-95e0c92bb5d4" + "871c2f2e-d416-4c76-b637-0db135e45c7e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093533Z:5dbd0b91-5217-4a66-a137-95e0c92bb5d4" + "KOREASOUTH:20230724T023727Z:871c2f2e-d416-4c76-b637-0db135e45c7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2965,7 +597,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:35:32 GMT" + "Mon, 24 Jul 2023 02:37:27 GMT" ], "Expires": [ "-1" @@ -2978,15 +610,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2998,7 +630,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3007,13 +639,13 @@ "11994" ], "x-ms-request-id": [ - "2d245c68-3663-4574-ae55-0458a9d1b49e" + "d2222725-7434-4453-885c-3915aa5f3ae5" ], "x-ms-correlation-request-id": [ - "2d245c68-3663-4574-ae55-0458a9d1b49e" + "d2222725-7434-4453-885c-3915aa5f3ae5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093548Z:2d245c68-3663-4574-ae55-0458a9d1b49e" + "KOREASOUTH:20230724T023743Z:d2222725-7434-4453-885c-3915aa5f3ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3022,7 +654,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:35:48 GMT" + "Mon, 24 Jul 2023 02:37:42 GMT" ], "Expires": [ "-1" @@ -3035,15 +667,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3055,7 +687,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3064,13 +696,13 @@ "11993" ], "x-ms-request-id": [ - "08131846-512c-42cc-89d7-192efb8508ca" + "472402dd-ffad-467d-9ef7-36d5622bdc47" ], "x-ms-correlation-request-id": [ - "08131846-512c-42cc-89d7-192efb8508ca" + "472402dd-ffad-467d-9ef7-36d5622bdc47" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093603Z:08131846-512c-42cc-89d7-192efb8508ca" + "KOREASOUTH:20230724T023758Z:472402dd-ffad-467d-9ef7-36d5622bdc47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3079,7 +711,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:36:03 GMT" + "Mon, 24 Jul 2023 02:37:58 GMT" ], "Expires": [ "-1" @@ -3092,15 +724,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3112,7 +744,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -3121,13 +753,13 @@ "11992" ], "x-ms-request-id": [ - "9cf87981-57b6-48f9-825b-da389ea97762" + "d3552ab4-bfdc-4fbf-9a4f-4e9a9b098b28" ], "x-ms-correlation-request-id": [ - "9cf87981-57b6-48f9-825b-da389ea97762" + "d3552ab4-bfdc-4fbf-9a4f-4e9a9b098b28" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093618Z:9cf87981-57b6-48f9-825b-da389ea97762" + "KOREASOUTH:20230724T023814Z:d3552ab4-bfdc-4fbf-9a4f-4e9a9b098b28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3136,7 +768,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:36:18 GMT" + "Mon, 24 Jul 2023 02:38:13 GMT" ], "Expires": [ "-1" @@ -3149,15 +781,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3172,13 +804,13 @@ "11991" ], "x-ms-request-id": [ - "4bf84b44-07bb-4020-8da7-6f189545e49e" + "33b7b973-918a-485e-89ee-77df3daa5911" ], "x-ms-correlation-request-id": [ - "4bf84b44-07bb-4020-8da7-6f189545e49e" + "33b7b973-918a-485e-89ee-77df3daa5911" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093633Z:4bf84b44-07bb-4020-8da7-6f189545e49e" + "KOREASOUTH:20230724T023829Z:33b7b973-918a-485e-89ee-77df3daa5911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3187,7 +819,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:36:33 GMT" + "Mon, 24 Jul 2023 02:38:29 GMT" ], "Expires": [ "-1" @@ -3200,15 +832,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDIwMjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWREl3TWprdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -3223,13 +855,13 @@ "11990" ], "x-ms-request-id": [ - "c6c63851-4ca8-40da-9cc4-d480f8e26946" + "79229080-6a55-4b7c-a3d3-386ea8fa5f5e" ], "x-ms-correlation-request-id": [ - "c6c63851-4ca8-40da-9cc4-d480f8e26946" + "79229080-6a55-4b7c-a3d3-386ea8fa5f5e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20230406T093633Z:c6c63851-4ca8-40da-9cc4-d480f8e26946" + "KOREASOUTH:20230724T023830Z:79229080-6a55-4b7c-a3d3-386ea8fa5f5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3238,7 +870,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 09:36:33 GMT" + "Mon, 24 Jul 2023 02:38:29 GMT" ], "Expires": [ "-1" @@ -3253,9 +885,9 @@ ], "Names": { "Test-CreateClusterWithScheduleBasedAutoscale": [ - "hdi-ps-test5894", - "group-ps-test5229", - "storagepstest3038" + "hdi-ps-test7185", + "group-ps-test2029", + "storagepstest1530" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightHostTests/TestHostRelatedCommands.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightHostTests/TestHostRelatedCommands.json index 7639de0029c0..655e0d0a698b 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightHostTests/TestHostRelatedCommands.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightHostTests/TestHostRelatedCommands.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7943?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test8649?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjQ5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "725e5e94-cffe-4831-849f-6dc1f0f6fa06" + "4a005f47-da7b-44af-8acd-0f58cb6bb1ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "f2e4d1f7-03db-4f5f-870b-57e06188e1ff" + "e97b05ec-3402-4fd9-a99d-b60726f686f4" ], "x-ms-correlation-request-id": [ - "f2e4d1f7-03db-4f5f-870b-57e06188e1ff" + "e97b05ec-3402-4fd9-a99d-b60726f686f4" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153448Z:f2e4d1f7-03db-4f5f-870b-57e06188e1ff" + "KOREACENTRAL:20230724T014134Z:e97b05ec-3402-4fd9-a99d-b60726f686f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 15:34:47 GMT" + "Mon, 24 Jul 2023 01:41:34 GMT" ], "Content-Length": [ - "187" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943\",\r\n \"name\": \"group-ps-test7943\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8649\",\r\n \"name\": \"group-ps-test8649\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.Storage/storageAccounts/storagepstest329?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMyOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8649/providers/Microsoft.Storage/storageAccounts/storagepstest5311?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDUzMTE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ad9a986-7a9b-4b62-902c-290a13f60857" + "d29f85a3-791e-453d-9b94-53fb096923e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "101" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/57c2ef91-24ad-46d7-9cdd-9467e36bec91?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/2c95fd87-5e5a-4816-86ba-a23e6ef25c05?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "57c2ef91-24ad-46d7-9cdd-9467e36bec91" + "2c95fd87-5e5a-4816-86ba-a23e6ef25c05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "fd244676-8dfd-4ead-a6f3-c4e03901956c" + "a091f4a7-2c5b-4dca-9429-84438a38e6ea" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153456Z:fd244676-8dfd-4ead-a6f3-c4e03901956c" + "KOREACENTRAL:20230724T014140Z:a091f4a7-2c5b-4dca-9429-84438a38e6ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 15:34:55 GMT" + "Mon, 24 Jul 2023 01:41:39 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,18 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/57c2ef91-24ad-46d7-9cdd-9467e36bec91?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy81N2MyZWY5MS0yNGFkLTQ2ZDctOWNkZC05NDY3ZTM2YmVjOTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/2c95fd87-5e5a-4816-86ba-a23e6ef25c05?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8yYzk1ZmQ4Ny01ZTVhLTQ4MTYtODZiYS1hMjNlNmVmMjVjMDU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -162,13 +162,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/57c2ef91-24ad-46d7-9cdd-9467e36bec91?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/2c95fd87-5e5a-4816-86ba-a23e6ef25c05?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "3" ], "x-ms-request-id": [ - "e94635ca-6f01-487c-92d3-4f4e6b5959d5" + "57619e8b-9eb4-402a-83cc-8745916e88c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,19 +177,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11999" ], "x-ms-correlation-request-id": [ - "cb09e283-9fe9-424b-8563-0ba979bb380a" + "d47cc259-2e33-4917-ac63-02aa086b00a2" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153513Z:cb09e283-9fe9-424b-8563-0ba979bb380a" + "KOREACENTRAL:20230724T014157Z:d47cc259-2e33-4917-ac63-02aa086b00a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 15:35:13 GMT" + "Mon, 24 Jul 2023 01:41:56 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -205,18 +205,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/57c2ef91-24ad-46d7-9cdd-9467e36bec91?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy81N2MyZWY5MS0yNGFkLTQ2ZDctOWNkZC05NDY3ZTM2YmVjOTE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/2c95fd87-5e5a-4816-86ba-a23e6ef25c05?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8yYzk1ZmQ4Ny01ZTVhLTQ4MTYtODZiYS1hMjNlNmVmMjVjMDU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "1cf04d0b-af54-4c1f-8a1f-6e128bb8da24" + "24c8c5b9-d282-4e1e-85d3-8af4a3b62a38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -234,22 +234,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-correlation-request-id": [ - "842e64aa-17ce-47c7-a2b9-0e8fa9afba09" + "916996e3-da92-4beb-9d3b-76775e712dcb" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153516Z:842e64aa-17ce-47c7-a2b9-0e8fa9afba09" + "KOREACENTRAL:20230724T014200Z:916996e3-da92-4beb-9d3b-76775e712dcb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 15:35:16 GMT" + "Mon, 24 Jul 2023 01:41:59 GMT" ], "Content-Length": [ - "1375" + "1393" ], "Content-Type": [ "application/json" @@ -258,28 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.Storage/storageAccounts/storagepstest329\",\r\n \"name\": \"storagepstest329\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-08T15:34:53.420662Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2022-02-08T15:34:53.420662Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2022-02-08T15:34:53.1706421Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest329.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest329.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest329.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest329.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest329-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest329-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest329-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8649/providers/Microsoft.Storage/storageAccounts/storagepstest5311\",\r\n \"name\": \"storagepstest5311\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T01:41:35.8011889Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T01:41:35.8011889Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-24T01:41:35.6917692Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5311.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5311.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5311.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest5311.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5311-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5311-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5311-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.Storage/storageAccounts/storagepstest329/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDMyOS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8649/providers/Microsoft.Storage/storageAccounts/storagepstest5311/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q4NjQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDUzMTEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca8282c9-26d7-4394-bb62-afd665aa2fa4" + "c788f9fd-1d00-4cb9-b9e3-97c6189e4b40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.54" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -288,7 +288,7 @@ "no-cache" ], "x-ms-request-id": [ - "3cc65058-1670-4685-afbd-b38cb2511321" + "2e35bb1e-ce93-4e29-80bb-7ea9dfa95900" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,16 +300,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "7a5323d0-5ef8-4af4-9867-e06799d9d911" + "066fb7e4-ebf7-4cba-9252-d95e28651829" ], "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153517Z:7a5323d0-5ef8-4af4-9867-e06799d9d911" + "KOREACENTRAL:20230724T014201Z:066fb7e4-ebf7-4cba-9252-d95e28651829" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 08 Feb 2022 15:35:17 GMT" + "Mon, 24 Jul 2023 01:42:00 GMT" ], "Content-Length": [ "288" @@ -321,2702 +321,15 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"BlW6e+6mlwE8Vjl8OFj4n8mA0W9VF25vXPQfcHfZAICahJvn7cWUgc+x2GPm7mgjg5htrpRNbjNs+AStQTZhSA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"21o6qFUO88iVzofNqtYx99X7CUHrWYrpp0RIJBXepYTYBiGEhlWaKA4d/GSJI71TnirjRr1w+KGw+ASt66EIOA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c3c9da86-4b9a-4d40-b7ee-fadac849e7ad" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5ec5774b-e128-4ebc-b3c2-b99de4d53712" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153519Z:5ec5774b-e128-4ebc-b3c2-b99de4d53712" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:35:19 GMT" - ], - "Content-Length": [ - "105467" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D15_v2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E48A_V4\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_F1\",\r\n \"STANDARD_F16\",\r\n \"STANDARD_F2\",\r\n \"STANDARD_F4\",\r\n \"STANDARD_F8\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E48a_v4\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"4.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D15_V2\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D15_v2 (20 cores, 143360 MB)\",\r\n \"maxDataDiskCount\": 40,\r\n \"memoryInMb\": 143360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1024000,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E48a_v4 (48 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_F1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F1 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 16384,\r\n \"webWorkerResourceDiskSizeInMb\": 16384\r\n },\r\n {\r\n \"name\": \"STANDARD_F16\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F16 (16 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 262144,\r\n \"webWorkerResourceDiskSizeInMb\": 262144\r\n },\r\n {\r\n \"name\": \"STANDARD_F2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 32768,\r\n \"webWorkerResourceDiskSizeInMb\": 32768\r\n },\r\n {\r\n \"name\": \"STANDARD_F4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F4 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 65536,\r\n \"webWorkerResourceDiskSizeInMb\": 65536\r\n },\r\n {\r\n \"name\": \"STANDARD_F8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F8 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 131072,\r\n \"webWorkerResourceDiskSizeInMb\": 131072\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"East US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest329.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test9568\",\r\n \"key\": \"BlW6e+6mlwE8Vjl8OFj4n8mA0W9VF25vXPQfcHfZAICahJvn7cWUgc+x2GPm7mgjg5htrpRNbjNs+AStQTZhSA==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.Storage/storageAccounts/storagepstest329\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2140" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"354e6276-6936-4c0d-8cc0-7e2471fe771c\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "4cb7c46f-5189-4259-a855-148261104e36" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0291ad6c-94fc-424c-98f9-f1da17b65dc2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153532Z:0291ad6c-94fc-424c-98f9-f1da17b65dc2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:35:31 GMT" - ], - "Content-Length": [ - "1953" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568\",\r\n \"name\": \"hdi-ps-test9568\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"354e6276-6936-4c0d-8cc0-7e2471fe771c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f05759fc3ae14c7ea66b25201cfce42f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-02-08T15:35:31.19\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest329.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.Storage/storageAccounts/storagepstest329\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test9568\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "441014d1-d904-4959-aa3a-67d86eef532a" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "c46775a9-a888-437e-9984-4f3489b5948b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153604Z:c46775a9-a888-437e-9984-4f3489b5948b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:36:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4fccb476-f44d-407a-bcf9-f923aa2ea59c" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "c93b4b45-de03-4032-82dd-331eb7a085e2" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153635Z:c93b4b45-de03-4032-82dd-331eb7a085e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:36:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "be53033c-4ecc-453e-b85d-bb7d1b1195c2" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8f6c064e-925d-4972-8cca-93f45815195c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153706Z:8f6c064e-925d-4972-8cca-93f45815195c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:37:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "756670d1-4860-4f34-9284-11fe9bb91664" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e4b14fc7-262f-46d7-8090-329b8de77eb7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153738Z:e4b14fc7-262f-46d7-8090-329b8de77eb7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:37:37 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6a8f281f-6f32-4f08-892e-59e90af34efa" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a2e4c2af-2f86-493e-949e-4819125b410b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153809Z:a2e4c2af-2f86-493e-949e-4819125b410b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:38:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1148585a-fa60-4261-8c22-4dda1467ccf1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4c0ec92d-fd85-456b-9851-cd3b65b098fb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153841Z:4c0ec92d-fd85-456b-9851-cd3b65b098fb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:38:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "55472a7c-67f5-4932-8500-804180015d0f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3030cb22-845d-45fd-9818-3a5b1664cfe7" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153912Z:3030cb22-845d-45fd-9818-3a5b1664cfe7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:39:12 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f5ff07cb-5225-4c14-bfd2-dbdbf0fd18c0" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e1df0d52-e089-4971-b9a8-d698e7beb716" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T153944Z:e1df0d52-e089-4971-b9a8-d698e7beb716" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:39:44 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a396b9ae-7384-4cbe-ac6a-110c373fa3d4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "acf0570f-8d76-4393-bfc2-d6f0589d44b1" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154015Z:acf0570f-8d76-4393-bfc2-d6f0589d44b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:40:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e97bed9b-1433-4f68-bc66-3f8b45906233" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "16993180-37ea-4c52-ae0a-430774c16e70" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154046Z:16993180-37ea-4c52-ae0a-430774c16e70" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:40:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f9ac05b0-d2d4-46e7-b113-0fbc0f190fa1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "45f740f4-3ecb-4620-b930-d86819dd9281" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154118Z:45f740f4-3ecb-4620-b930-d86819dd9281" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:41:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eee748c3-5539-4618-82ab-fa58862019a7" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d348489e-1508-4be5-afb9-6057ad756e2f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154150Z:d348489e-1508-4be5-afb9-6057ad756e2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:41:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f219dd5e-3e72-4ac5-bb67-ce657da47241" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3c2e1a6d-4402-4676-8a3a-650ba17ef5db" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154221Z:3c2e1a6d-4402-4676-8a3a-650ba17ef5db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:42:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "efc201c1-dd54-4948-8739-d7cc16202cb9" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "d6f73cb6-66ab-4c96-89ec-d6de11e5cfec" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154253Z:d6f73cb6-66ab-4c96-89ec-d6de11e5cfec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:42:52 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "410bb6c5-81e4-4b78-b687-fcb11664f75a" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5d35b2b0-fcbd-4798-8161-3ca0125d403e" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154324Z:5d35b2b0-fcbd-4798-8161-3ca0125d403e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:43:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bdbe3b08-4398-4e90-8c89-172cf1cba465" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0bc1a344-6e79-4409-85bb-1998e1ae4a8a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154355Z:0bc1a344-6e79-4409-85bb-1998e1ae4a8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:43:55 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e1709922-d0c9-4456-8da6-1a4306277249" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e8ce02a5-df5e-4926-9460-268a7087ad80" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154427Z:e8ce02a5-df5e-4926-9460-268a7087ad80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:44:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "38434405-6ce8-4dbe-93ec-0e17d59072e8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "858206d5-b327-45e9-a1c9-b936fef266f6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154458Z:858206d5-b327-45e9-a1c9-b936fef266f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:44:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "37ddeb4b-2b96-4045-9958-c5f140b5cfb6" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "5cc1dc89-95ad-45be-a51a-59e8af9e8fdf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154529Z:5cc1dc89-95ad-45be-a51a-59e8af9e8fdf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:45:29 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "214b8b56-10a6-40c0-8771-bd4010d2b7da" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7ded04d5-a436-4122-8dac-1c42f4bcac79" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154601Z:7ded04d5-a436-4122-8dac-1c42f4bcac79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:46:01 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "113d7c67-2222-43af-845a-ac9f69e801f5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "ae4aaa63-7107-479b-b7ac-5d1297da19de" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154631Z:ae4aaa63-7107-479b-b7ac-5d1297da19de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:46:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6c161001-b59c-467d-9ec9-4999df1d7c8f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f1c90dbb-1416-4704-b286-cca879200d29" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154703Z:f1c90dbb-1416-4704-b286-cca879200d29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:47:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "96b55a17-0f6c-46fd-9e13-6843b3810ccf" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "23b6cd33-cba8-444f-a1e0-8178edf47e00" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154734Z:23b6cd33-cba8-444f-a1e0-8178edf47e00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:47:34 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d44545e-a8bf-4347-bc8d-7ad4ad800cad" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "48f41cc4-c3a0-4729-8858-3c786d0a676f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "492f169f-db70-4d40-898d-11ee87adc926" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154735Z:492f169f-db70-4d40-898d-11ee87adc926" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:47:34 GMT" - ], - "Content-Length": [ - "2171" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568\",\r\n \"name\": \"hdi-ps-test9568\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"354e6276-6936-4c0d-8cc0-7e2471fe771c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f05759fc3ae14c7ea66b25201cfce42f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T15:35:31.19\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9568-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9568.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest329.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.Storage/storageAccounts/storagepstest329\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test9568\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e37c9d3c-1849-49c0-9b2d-5bdac6d1ed1d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "72fd1103-b45c-4ef2-b962-19776fed5515", - "1303e88f-28fa-45d3-b35c-4917e3917110", - "dbd7de2a-1e2e-4039-9916-9ef7f70e68e2", - "45e02d38-a7f7-4835-9213-da89c9772495", - "3b35ef71-eaf9-4c53-bb56-6c6fa165ae25", - "4145b0e5-c58b-4164-920d-8a603c668f6b", - "01c1f1e8-12b1-4477-86c0-94e43f041b36", - "855af4c7-0e8d-48ce-95b2-d5be9a341dca", - "3e49cceb-e9c2-4070-9264-65b0e022a6c8", - "104cacee-ce3a-4deb-acc4-ec9f8525c1bb", - "1fc9b102-145d-4a7b-938b-9cd00763316c", - "f35f79a1-6f33-4eac-9801-0386427b10fc", - "0f92a547-0c53-41c9-b1fc-d54037b7066b", - "3ece9692-267b-478c-9db2-ea93d121ce65" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" - ], - "x-ms-request-id": [ - "ee32c515-7ca0-47ba-a948-8dd87690d498" - ], - "x-ms-correlation-request-id": [ - "ee32c515-7ca0-47ba-a948-8dd87690d498" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154744Z:ee32c515-7ca0-47ba-a948-8dd87690d498" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:47:43 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "260113" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/cluster-1\",\r\n \"name\": \"cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a431157f-6c5a-4fe3-895f-95c8a33fbf2d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"679fd62bb7c34ac3b3418613af779647\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:48:49.733\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cluster1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.Storage/storageAccounts/cluster1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cluster-1-2021-11-18t09-36-59-829z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/fwruletestnostorage\",\r\n \"name\": \"fwruletestnostorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"d6bad2da-8c82-43a4-8987-4004d2864b00\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"38eebfcb4f57454c8ad6c7ec2c7baa48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T04:12:41.03\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: HIVE_METASTORE, HIVE_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER, APP_TIMELINE_SERVER, HISTORYSERVER, LIVY2_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fwruletestnostorage-2021-11-18t04-10-53-063z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/natgwtestshangwei\",\r\n \"name\": \"natgwtestshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"14f96cb1-3274-430b-9b4a-968628247675\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"2b00504bfa6243d5b1e85499a412ea7d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-17T04:59:14.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.2.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"natgwtestshanhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/natgwtestshanhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"natgwtestshangwei-2021-11-17t04-56-40-633z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/noeventhubtestfwrule\",\r\n \"name\": \"noeventhubtestfwrule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9e737c8a-f3f6-4143-8642-01e2669da20a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e704fc8f6ff447df87f193ebf6fa778e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T06:23:52.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"noeventhubtestfwrule-2021-11-18t06-21-43-155z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/plobshangwei1104\",\r\n \"name\": \"plobshangwei1104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"10b8b4f2-1451-4857-96db-d6becd92f052\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e82e156040f04a2084462f47a97e790a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:06:31.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.24\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plobshangwei1104-2021-11-18t03-04-32-097z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/removeservicebus\",\r\n \"name\": \"removeservicebus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"40472f2c-e9cc-4c2a-baea-73f3c83ea6b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"9d24322384fe4bd487f0c530d6a93e0e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:25:54.27\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.40\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"removeservicebus-2021-11-18t09-24-34-018z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-re-hdi\",\r\n \"name\": \"shangwei-re-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6ae5b2-e52a-4218-bc6c-86116159476b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ac85f4d11a8f496f94ff739a8f71790c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-29T07:58:27.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweirehdihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweirehdihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-re-hdi-2021-10-29t07-56-05-875z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-script\",\r\n \"name\": \"shiyi-trial-hadoop-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"1ca32779-0cee-420f-a5ba-908b3185ab74\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c85a253c646c4aaab769bb0118eff80d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-28T08:20:39.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://shiyitrialhadhdistorage.blob.core.windows.net/scriptprivate/test1.sh. Exception message: The remote server returned an error: (404) Not Found..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhadhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhadhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-scri-2021-12-28t08-18-03-877z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-vnet\",\r\n \"name\": \"shiyi-trial-hadoop-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a59f77a7-dd4c-4c94-9959-6910e34f73e9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b4b6c088cc544abb8039c6f8af97e1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:06:25.67\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhdpvnetstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhdpvnetstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-vnet-2021-12-31t03-02-31-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/sn27-shiyi-trial-hadoop-scale\",\r\n \"name\": \"sn27-shiyi-trial-hadoop-scale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"bdf10645-3d33-4502-95f3-d69df6d56ee7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"67cbcdca754c4108936fa75ad6498266\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:34:44.39\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sn27shiyitriahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/sn27shiyitriahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sn27shiyi-trial-hadoop-2021-12-31t03-16-52-081z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/testfwnoule\",\r\n \"name\": \"testfwnoule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9f44e2cc-000b-46af-b38b-e0ef7182c0e7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb384cdc9f1b486b80711578a46abaf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T12:20:39.717\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: APP_TIMELINE_SERVER, HISTORYSERVER, HIVE_METASTORE, HIVE_SERVER, JUPYTER_MASTER, LIVY2_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.55\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testfwnoule-2021-11-18t12-18-19-302z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/wildcardfwruleshangwei\",\r\n \"name\": \"wildcardfwruleshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"22b98b3e-7606-4cfe-8893-3d129cff0cf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"629252fd20ad4a9ab233d8d6b8e103f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:17:24.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wildcardfwruleshangwei-2021-11-18t03-15-34-205z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1ipleak1015\",\r\n \"name\": \"x1ipleak1015\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6f98f45a-83c4-49c9-b1b2-2778db052f65\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"728ba7042d844ed4a77e07116acceadd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-15T02:13:18.147\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1ipleak1015hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1ipleak1015hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1ipleak1015-2021-10-15t02-10-55-571z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziweitrial160\",\r\n \"name\": \"ziweitrial160\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8c4eab1d-99ec-4613-ad11-3489b4d792cf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1ece0f96973f47ac90fc5dc4d15d9111\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-16T09:03:17.753\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitrial160hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitrial160hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweitrial160-2021-11-16t08-55-33-161z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziwei-vnet-pl-cluster\",\r\n \"name\": \"ziwei-vnet-pl-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8f0d2245-ed9f-4404-b8b7-579d52d44a3a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5da9295f9ab9445da64de0d2ad3232db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-12-28T06:45:14.37\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitestvnethdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitestvnethdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziwei-vnet-pl-cluster-2021-12-28t06-42-56-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimeout11152\",\r\n \"name\": \"x1sshtimeout11152\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"793ff34c-4c91-4097-800f-2dc232465e3e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1cdbc57ba4da4e9484582e8d9bf1a549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:51:38.26\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimeout1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimeout1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimeout11-2021-11-15t01-48-59-363z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.HDInsight/clusters/silahu1zonewesteurope1\",\r\n \"name\": \"silahu1zonewesteurope1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"1c136beb-cd76-47c8-b353-e6558cb4eb44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"38db6e1a7b9741eca9d35039be544888\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-21T02:28:39.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahustorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Storage/storageAccounts/silahustorageaccount1\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.HDInsight/clusters/silahu-crosssub-test2\",\r\n \"name\": \"silahu-crosssub-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"089e7bb4-7657-4305-9b0a-20c015e46cc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"642b4c83bb09425f90ff700285b7cfee\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-24T06:02:51.847\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"crosssubsc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.Storage/storageAccounts/crosssubsc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout1115\",\r\n \"name\": \"x1sshtimout1115\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"44ab8c70-4843-4eea-a002-ca7cd35b2eb1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab8de7f7ee9d4cc1b5def2ed3cde382a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T00:44:43.387\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout11-2021-11-15t00-41-36-598z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout11151\",\r\n \"name\": \"x1sshtimout11151\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"7b36a6f7-593f-40f6-99d1-30124df683b3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45d64e947e9a40ed9b88739372195f66\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:39:30.447\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout111-2021-11-15t01-38-23-654z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.HDInsight/clusters/cunfeng-poc-cluster\",\r\n \"name\": \"cunfeng-poc-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ee606cd7-9b59-41d6-a671-5334b8fdaf73\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"edda8b6eef5849a68c20e6268d069b3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T10:49:05.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cunfengpoccluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.Storage/storageAccounts/cunfengpoccluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cunfeng-poc-cluster-2022-02-08t10-46-13-585z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568\",\r\n \"name\": \"hdi-ps-test9568\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"354e6276-6936-4c0d-8cc0-7e2471fe771c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f05759fc3ae14c7ea66b25201cfce42f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T15:35:31.19\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9568-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9568.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest329.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.Storage/storageAccounts/storagepstest329\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test9568\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test\",\r\n \"name\": \"pl-silahu-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b3b8670c-6ffb-443d-9f8e-6a8aae83d4cc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3a4bfe669a4147008b4e19238acfb99b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-04T14:00:54.667\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuprivatelinkstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Storage/storageAccounts/silahuprivatelinkstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plsilahu-test-2021-11-04t13-56-21-932z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test/privateEndpointConnections/testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"name\": \"testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelinkconsumer/providers/Microsoft.Network/privateEndpoints/testgateway-privateendpoint\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"536936262\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-ob-nopl\",\r\n \"name\": \"shangwei-ob-nopl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d244f602-b354-47da-9503-409e24881d80\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"59a4b07b702a4b11b9a62df0a20176a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-03T08:43:52.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.16.10.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiobnophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweiobnophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-ob-nopl-2021-11-03t08-38-14-544z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x111081outbound\",\r\n \"name\": \"x111081outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4323c35d-e603-4185-a805-02c2eafa263a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6b914129c5b413cb5d1f9f2fd660773\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-08T03:53:49.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x111081outbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x111081outbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x111081outbound-2021-11-08t03-51-20-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-azsecpack\",\r\n \"name\": \"yalu-azsecpack\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"322625f0-c3da-4054-be75-9311ea323fe3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f849798233f44c3b773b4ab19ee94b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-01-17T12:15:41.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluazsecpackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluazsecpackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-azsecpack-2022-01-17t12-13-51-157z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahu-etest1\",\r\n \"name\": \"silahu-etest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"987f491e-27a6-4ac2-aa54-cb8275600c58\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bc0f1a8324a74614ba7973dcf9b9b2f5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-13T12:54:31.793\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahuetest1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahu-etest1-2021-12-13t12-53-00-904z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahukrtest\",\r\n \"name\": \"silahukrtest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"5c767562-af30-4185-91cd-faed26a679b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ad187c871ff54bada6f78fcf6d7fedcc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-20T05:41:02.083\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahukrtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahukrtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahukrtest-2021-12-20t05-38-08-665z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbug\",\r\n \"name\": \"clitestfixbug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d2f6c521-abf3-45be-9e0c-2f701c72724d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"950de3d531bb423eb0a586034a3e7206\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T07:01:23.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbug\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbuge2host\",\r\n \"name\": \"clitestfixbuge2host\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"11bfcbff-9d54-4421-80a8-edb25ddfa537\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"df3254fd7e564f9eb979d3b37287de2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T08:09:43.2\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbuge2host\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-plconfig\",\r\n \"name\": \"hdips-plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dd9771ba-b469-460f-be04-07d2a1663572\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c88c6222064a4ba1bcb5a20bf953c7fd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-26T07:24:59.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdips-plconfig\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/hfeb1hdinsight\",\r\n \"name\": \"hfeb1hdinsight\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"950d0f79-a429-484b-a225-ca34753440f1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"94f864b7c7c44d5f8efd412fde466278\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-01T10:27:49.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"feb1hdinsighthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/feb1hdinsighthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"feb1hdinsight-2022-02-01t09-36-05-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/kafka1804rel1\",\r\n \"name\": \"kafka1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dcd03388-2dcd-42fd-a56f-57886e873566\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4cb83c10697345a1ba82bafe4632da68\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:06:43.373\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafka1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/kafka1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafka1804rel1-2021-11-18t02-05-19-981z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/somfeb2hd\",\r\n \"name\": \"somfeb2hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fd449ae-2e3e-44ae-9af7-46df5c762ba7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"68d40ad695da407cbdb0974af0281ef9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-02T05:12:03.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"somfeb2hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/somfeb2hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"somfeb2hd-2022-02-02t05-08-51-016z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel\",\r\n \"name\": \"spark1804rel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9ec1368d-09a4-4131-b9ea-76130bf8c368\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2110121746.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"cf27f21b68cc4944aa8fe9afed03c309\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T01:28:07.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804relhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804relhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel-2021-11-18t01-26-57-400z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel1\",\r\n \"name\": \"spark1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1e79959-5638-444c-9b94-0639020b656d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"4afc3d89289a47c4a909ec3375bdc1c5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:04:05.393\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel1-2021-11-18t02-03-00-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel3\",\r\n \"name\": \"spark1804rel3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d97e9edf-b1cc-4ee7-a12b-15a0ecca4ea4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"3a7c48030d6f41b7bbfca7ea61a87498\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T03:00:04.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepstacc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/adkorlepstacc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel3-2021-11-18t02-59-11-390z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/testmsgraph1\",\r\n \"name\": \"testmsgraph1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"120fb6db-e245-44df-a93e-9643bc7850c2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202040503.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"909d18d761d34d67b8549829e6529f45\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-08T09:13:46.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1offlineverify1102\",\r\n \"name\": \"x1offlineverify1102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"4ed0cd0f-43ad-4152-885b-6cf9da9a0635\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2110271403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"311edd2109ab4f3d96356d2147146f38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-02T12:25:05.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1offlineverihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1offlineverihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1offlineverify1102-2021-11-02t12-21-53-880z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.HDInsight/clusters/sijin-test\",\r\n \"name\": \"sijin-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"01328369-b1f4-47ae-a0ff-09aec89768f5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"53fe2a909e1c46d6a3a49920d16898b6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-07T18:39:50.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijintesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.Storage/storageAccounts/sijintesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-test-2022-02-07t18-38-45-444z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1964f97d-49a1-49c6-8965-d3996fb880d9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "30c9da5c-a565-41b4-a9c8-4f0d4075d2a3", - "519eae30-42d0-4e2d-8939-0da3f195887c", - "fd6b9a86-7a92-4a36-98f0-07974c310361", - "6812f999-d365-42a6-a4ef-d4e85df744df", - "3f071dec-6d85-4a23-93df-06f6a5ff474d", - "16f69432-7cd5-4269-94a3-fa000dd1b06a", - "fe20826f-5379-4a19-9da1-449cf937935c", - "5f1c7cc3-9293-4a01-8500-e49994fe49e0", - "b4fa9d7f-39ac-438a-ac86-8872a8f28a85", - "268fbeec-6188-414b-9baa-13a28eda9b4e", - "9317e47e-621a-4364-8d45-461a646df5f7", - "deda0605-c8ff-4036-aca0-eb2bf4b5f7dd", - "f50f9fae-6122-41e1-a5ef-766fc7a301b0", - "b0501db6-d7bf-4601-8283-431c5b316306" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" - ], - "x-ms-request-id": [ - "d84cb380-d212-45c8-85c5-ef8d153e587d" - ], - "x-ms-correlation-request-id": [ - "d84cb380-d212-45c8-85c5-ef8d153e587d" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154752Z:d84cb380-d212-45c8-85c5-ef8d153e587d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:47:51 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "260113" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/testcert\",\r\n \"name\": \"testcert\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"96817744-261a-4220-9796-af2acc57f6c3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1dd2de49863a4b8a9481eeb9a742e730\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-15T04:47:12.813\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testcert.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testcerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/testcerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testcert-2021-06-15t04-45-10-876z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.HDInsight/clusters/lrstest0603\",\r\n \"name\": \"lrstest0603\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Brazil South\",\r\n \"etag\": \"8b931460-7ec1-4951-8948-b9d47021eaf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1ed5627ab94d4e9a9fd9d0aa9b5cc2a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-03T23:11:12.15\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"lrstest0603.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"lrstest0603hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-azap/providers/Microsoft.Storage/storageAccounts/lrstest0603hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"lrstest0603-2021-06-03t23-09-34-874z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.HDInsight/clusters/test-resoruvemove\",\r\n \"name\": \"test-resoruvemove\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk West\",\r\n \"etag\": \"5a8c96a7-b7b7-464e-b6db-28db8746a6f3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f07ca37cc0147ca804eeea5eaedce70\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-23T23:35:10.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-resoruvemove.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testresoruvemhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testmoveresource/providers/Microsoft.Storage/storageAccounts/testresoruvemhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-resoruvemove-2021-08-23t23-33-43-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/cluster-1\",\r\n \"name\": \"cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a431157f-6c5a-4fe3-895f-95c8a33fbf2d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"679fd62bb7c34ac3b3418613af779647\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:48:49.733\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cluster1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.Storage/storageAccounts/cluster1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cluster-1-2021-11-18t09-36-59-829z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/fwruletestnostorage\",\r\n \"name\": \"fwruletestnostorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"d6bad2da-8c82-43a4-8987-4004d2864b00\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"38eebfcb4f57454c8ad6c7ec2c7baa48\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T04:12:41.03\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: HIVE_METASTORE, HIVE_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER, APP_TIMELINE_SERVER, HISTORYSERVER, LIVY2_SERVER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fwruletestnostorage-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fwruletestnostorage-2021-11-18t04-10-53-063z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/natgwtestshangwei\",\r\n \"name\": \"natgwtestshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"14f96cb1-3274-430b-9b4a-968628247675\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"2b00504bfa6243d5b1e85499a412ea7d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/testnatgw\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-17T04:59:14.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.2.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"natgwtestshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"natgwtestshanhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/natgwtestshanhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"natgwtestshangwei-2021-11-17t04-56-40-633z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/noeventhubtestfwrule\",\r\n \"name\": \"noeventhubtestfwrule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9e737c8a-f3f6-4143-8642-01e2669da20a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e704fc8f6ff447df87f193ebf6fa778e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T06:23:52.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"noeventhubtestfwrule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"noeventhubtestfwrule-2021-11-18t06-21-43-155z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/plobshangwei1104\",\r\n \"name\": \"plobshangwei1104\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"10b8b4f2-1451-4857-96db-d6becd92f052\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e82e156040f04a2084462f47a97e790a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:06:31.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.24\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"plobshangwei1104-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plobshangwei1104-2021-11-18t03-04-32-097z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/removeservicebus\",\r\n \"name\": \"removeservicebus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"40472f2c-e9cc-4c2a-baea-73f3c83ea6b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"9d24322384fe4bd487f0c530d6a93e0e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T09:25:54.27\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.40\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"removeservicebus-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.44\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"removeservicebus-2021-11-18t09-24-34-018z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-re-hdi\",\r\n \"name\": \"shangwei-re-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6ae5b2-e52a-4218-bc6c-86116159476b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ac85f4d11a8f496f94ff739a8f71790c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-29T07:58:27.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-re-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweirehdihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweirehdihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-re-hdi-2021-10-29t07-56-05-875z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-script\",\r\n \"name\": \"shiyi-trial-hadoop-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"1ca32779-0cee-420f-a5ba-908b3185ab74\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c85a253c646c4aaab769bb0118eff80d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-28T08:20:39.81\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://shiyitrialhadhdistorage.blob.core.windows.net/scriptprivate/test1.sh. Exception message: The remote server returned an error: (404) Not Found..\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhadhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhadhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-scri-2021-12-28t08-18-03-877z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/shiyi-trial-hadoop-vnet\",\r\n \"name\": \"shiyi-trial-hadoop-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"a59f77a7-dd4c-4c94-9959-6910e34f73e9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b4b6c088cc544abb8039c6f8af97e1e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn25\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:06:25.67\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-trial-hadoop-vnet-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyitrialhdpvnetstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/shiyitrialhdpvnetstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-trial-hadoop-vnet-2021-12-31t03-02-31-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.HDInsight/clusters/sn27-shiyi-trial-hadoop-scale\",\r\n \"name\": \"sn27-shiyi-trial-hadoop-scale\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"bdf10645-3d33-4502-95f3-d69df6d56ee7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"67cbcdca754c4108936fa75ad6498266\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Network/virtualNetworks/shiyi-trial-vnet/subnets/sn27\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-31T03:34:44.39\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sn27-shiyi-trial-hadoop-scale-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.2.6\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sn27shiyitriahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-trial/providers/Microsoft.Storage/storageAccounts/sn27shiyitriahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sn27shiyi-trial-hadoop-2021-12-31t03-16-52-081z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/testfwnoule\",\r\n \"name\": \"testfwnoule\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9f44e2cc-000b-46af-b38b-e0ef7182c0e7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"fb384cdc9f1b486b80711578a46abaf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fw/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T12:20:39.717\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AmbariClusterCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support. The following host components failed to start up: APP_TIMELINE_SERVER, HISTORYSERVER, HIVE_METASTORE, HIVE_SERVER, JUPYTER_MASTER, LIVY2_SERVER, METRICS_COLLECTOR, METRICS_GRAFANA, NAMENODE, OOZIE_SERVER, RESOURCEMANAGER, SPARK2_JOBHISTORYSERVER, SPARK2_THRIFTSERVER, WEBHCAT_SERVER, ZEPPELIN_MASTER.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.55\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testfwnoule-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.56\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testfwnoule-2021-11-18t12-18-19-302z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.HDInsight/clusters/wildcardfwruleshangwei\",\r\n \"name\": \"wildcardfwruleshangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"22b98b3e-7606-4cfe-8893-3d129cff0cf7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"629252fd20ad4a9ab233d8d6b8e103f4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Network/virtualNetworks/shangwei-test-fwoutbound/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-18T03:17:24.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wildcardfwruleshangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestoutboundpl.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-fw/providers/Microsoft.Storage/storageAccounts/shangweitestoutboundpl\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wildcardfwruleshangwei-2021-11-18t03-15-34-205z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1ipleak1015\",\r\n \"name\": \"x1ipleak1015\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6f98f45a-83c4-49c9-b1b2-2778db052f65\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"728ba7042d844ed4a77e07116acceadd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1ipleak1015vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-15T02:13:18.147\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1ipleak1015-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.9\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1ipleak1015hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1ipleak1015hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1ipleak1015-2021-10-15t02-10-55-571z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziweitrial160\",\r\n \"name\": \"ziweitrial160\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8c4eab1d-99ec-4613-ad11-3489b4d792cf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1ece0f96973f47ac90fc5dc4d15d9111\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-16T09:03:17.753\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweitrial160.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitrial160hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitrial160hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweitrial160-2021-11-16t08-55-33-161z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.HDInsight/clusters/ziwei-vnet-pl-cluster\",\r\n \"name\": \"ziwei-vnet-pl-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8f0d2245-ed9f-4404-b8b7-579d52d44a3a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5da9295f9ab9445da64de0d2ad3232db\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Network/virtualNetworks/ziweivnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-12-28T06:45:14.37\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziwei-vnet-pl-cluster-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweitestvnethdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweitrial/providers/Microsoft.Storage/storageAccounts/ziweitestvnethdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziwei-vnet-pl-cluster-2021-12-28t06-42-56-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimeout11152\",\r\n \"name\": \"x1sshtimeout11152\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"793ff34c-4c91-4097-800f-2dc232465e3e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"1cdbc57ba4da4e9484582e8d9bf1a549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:51:38.26\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimeout11152.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimeout1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimeout1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimeout11-2021-11-15t01-48-59-363z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.HDInsight/clusters/silahu1zonewesteurope1\",\r\n \"name\": \"silahu1zonewesteurope1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"etag\": \"1c136beb-cd76-47c8-b353-e6558cb4eb44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"38db6e1a7b9741eca9d35039be544888\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-21T02:28:39.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu1zonewesteurope1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahustorageaccount1.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-zone-westeurope/providers/Microsoft.Storage/storageAccounts/silahustorageaccount1\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.HDInsight/clusters/silahu-crosssub-test2\",\r\n \"name\": \"silahu-crosssub-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"089e7bb4-7657-4305-9b0a-20c015e46cc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.0\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2103171338.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"642b4c83bb09425f90ff700285b7cfee\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"silahu\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet\",\r\n \"subnet\": \"/subscriptions/c36fd9e7-e5b1-4d3e-bb85-2e538040258b/resourceGroups/silahu-cross-vent/providers/Microsoft.Network/virtualNetworks/silahucrosssubvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-24T06:02:51.847\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-crosssub-test2-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"crosssubsc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-cross-vnet/providers/Microsoft.Storage/storageAccounts/crosssubsc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"containertest\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.HDInsight/clusters/testhdiwesteurope\",\r\n \"name\": \"testhdiwesteurope\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"2d7d8cbc-0a23-43ee-b5e8-a259fc8e3201\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f7bce4496fbb4425baae6e01c938843d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-10T00:51:35.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testhdiwesteurope.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhdiwesteuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-westeurope/providers/Microsoft.Storage/storageAccounts/testhdiwesteuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhdiwesteurope-2021-08-10t00-50-19-683z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout1115\",\r\n \"name\": \"x1sshtimout1115\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"44ab8c70-4843-4eea-a002-ca7cd35b2eb1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab8de7f7ee9d4cc1b5def2ed3cde382a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T00:44:43.387\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout1115.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout11-2021-11-15t00-41-36-598z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1sshtimout11151\",\r\n \"name\": \"x1sshtimout11151\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"7b36a6f7-593f-40f6-99d1-30124df683b3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"45d64e947e9a40ed9b88739372195f66\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-15T01:39:30.447\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1sshtimout11151.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1sshtimout11hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1sshtimout11hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1sshtimout111-2021-11-15t01-38-23-654z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.HDInsight/clusters/andarmod-spark-crud\",\r\n \"name\": \"andarmod-spark-crud\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04419e77-9da4-4be0-928d-672c3fb8ecb4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cb50571a7970410b8486b39b7d43c24c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-28T15:38:24.77\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-spark-crud.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodsparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-test-rg/providers/Microsoft.Storage/storageAccounts/andarmodsparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-spark-crud-2021-09-28t15-36-27-726z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.HDInsight/clusters/cunfeng-poc-cluster\",\r\n \"name\": \"cunfeng-poc-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ee606cd7-9b59-41d6-a671-5334b8fdaf73\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"edda8b6eef5849a68c20e6268d069b3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T10:49:05.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cunfeng-poc-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cunfengpoccluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfengrg/providers/Microsoft.Storage/storageAccounts/cunfengpoccluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cunfeng-poc-cluster-2022-02-08t10-46-13-585z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.HDInsight/clusters/fadytestfeed\",\r\n \"name\": \"fadytestfeed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"64a97c0e-8ede-489f-87aa-40fb79e4e462\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0e96d72a4e64988806e3b42f99810bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-30T22:05:24.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadytestfeed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadytestfeedhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadyw-test/providers/Microsoft.Storage/storageAccounts/fadytestfeedhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadytestfeed-2021-07-30t22-04-02-949z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568\",\r\n \"name\": \"hdi-ps-test9568\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"354e6276-6936-4c0d-8cc0-7e2471fe771c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f05759fc3ae14c7ea66b25201cfce42f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-08T15:35:31.19\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9568-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9568.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest329.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.Storage/storageAccounts/storagepstest329\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test9568\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e29521270a734d1ab894e2ed53ed6e60\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test\",\r\n \"name\": \"pl-silahu-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b3b8670c-6ffb-443d-9f8e-6a8aae83d4cc\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3a4bfe669a4147008b4e19238acfb99b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Network/virtualNetworks/privatelinkvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-04T14:00:54.667\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.6\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-silahu-test-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuprivatelinkstorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.Storage/storageAccounts/silahuprivatelinkstorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"plsilahu-test-2021-11-04t13-56-21-932z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelink/providers/Microsoft.HDInsight/clusters/pl-silahu-test/privateEndpointConnections/testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"name\": \"testgateway-privateendpoint.acfbc1da-5145-4be8-ba33-2b44badc7885\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-hdiprivatelinkconsumer/providers/Microsoft.Network/privateEndpoints/testgateway-privateendpoint\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"536936262\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001\",\r\n \"name\": \"reddytest-1001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"428a8e09-581a-4ed2-81b0-0e578dd7fadd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"098f67295f9b47f7803d9a05e4d822f8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:17:25.09\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"reddyok2del.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/1533031f-9510-4d8d-8f83-af94df45d43c/resourceGroups/Default-SQL-EastUS/providers/Microsoft.Storage/storageAccounts/reddyok2del\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-13-22-703z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-ob-nopl\",\r\n \"name\": \"shangwei-ob-nopl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"d244f602-b354-47da-9503-409e24881d80\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"59a4b07b702a4b11b9a62df0a20176a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-rg/providers/Microsoft.Network/virtualNetworks/shangwei-rg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-11-03T08:43:52.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.16.10.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-ob-nopl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.16.10.5\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweiobnophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweiobnophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-ob-nopl-2021-11-03t08-38-14-544z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x111081outbound\",\r\n \"name\": \"x111081outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4323c35d-e603-4185-a805-02c2eafa263a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6b914129c5b413cb5d1f9f2fd660773\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Network/virtualNetworks/x1privatenetwork1108/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-08T03:53:49.24\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x111081outbound-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x111081outbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x111081outbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x111081outbound-2021-11-08t03-51-20-274z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-azsecpack\",\r\n \"name\": \"yalu-azsecpack\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"322625f0-c3da-4054-be75-9311ea323fe3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2112201501.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7f849798233f44c3b773b4ab19ee94b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-01-17T12:15:41.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-azsecpack.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluazsecpackhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluazsecpackhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-azsecpack-2022-01-17t12-13-51-157z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahu-etest1\",\r\n \"name\": \"silahu-etest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"987f491e-27a6-4ac2-aa54-cb8275600c58\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bc0f1a8324a74614ba7973dcf9b9b2f5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32a_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-13T12:54:31.793\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahu-etest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahuetest1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahuetest1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahu-etest1-2021-12-13t12-53-00-904z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.HDInsight/clusters/silahukrtest\",\r\n \"name\": \"silahukrtest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Korea Central\",\r\n \"etag\": \"5c767562-af30-4185-91cd-faed26a679b7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ad187c871ff54bada6f78fcf6d7fedcc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Network/virtualNetworks/silahu-vnet-krc/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-12-20T05:41:02.083\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"silahukrtest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"silahukrtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-eav4-krcentral/providers/Microsoft.Storage/storageAccounts/silahukrtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"silahukrtest-2021-12-20t05-38-08-665z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"name\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"97d82ef0-2509-4f5f-a621-900381d21977\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"InteractiveHive\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"2cc70bf5a4b840b0a25a14fe857de4fd\",\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\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T10:57:33.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 70\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-interactivehive21-v36-wus-07121127.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-interactivehive21-v36-wus-07121127\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/CreateDeleteRunnerResourceGroupwestus/providers/Microsoft.HDInsight/clusters/hdidogfood-storm11-v36-wus-07120510\",\r\n \"name\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"896328a3-a5a1-46b4-9547-caf8fd03022a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/storm-3.6.2000.67.2104210353.json\",\r\n \"kind\": \"Storm\",\r\n \"componentVersion\": {\r\n \"Storm\": \"1.1\"\r\n }\r\n },\r\n \"clusterId\": \"e129d42b4d744b01a52b1df79950c3ea\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"adminuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-12T04:40:44.503\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdidogfood-storm11-v36-wus-07120510.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdirunnerlocalwus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdirunnerlocalwestus/providers/Microsoft.Storage/storageAccounts/hdirunnerlocalwus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdidogfood-storm11-v36-wus-07120510\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.HDInsight/clusters/hdispark-sdc\",\r\n \"name\": \"hdispark-sdc\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"0b354299-5ac6-4307-8119-cb22f44151d7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c32caae0a7724851bceb495319388859\",\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Network/virtualNetworks/hdispark-sdc-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-09-29T17:41:40.053\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdispark-sdc-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.8.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparksdchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-bcdr-test-hdispark-sdc-westus/providers/Microsoft.Storage/storageAccounts/hdisparksdchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdispark-sdc-2021-09-29t17-38-37-787z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/pl-adlsgen2-shangwei\",\r\n \"name\": \"pl-adlsgen2-shangwei\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"85125b3e-80b3-4651-9891-6310f2acaed3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"ce31df04076e423d888134edf6b7b211\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-08-03T10:42:38.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.27\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pl-adlsgen2-shangwei-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.28\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-pl-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"pl-adlsgen2-shangwei-2021-08-03t10-25-51-972z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-pl-msi\": {\r\n \"principalId\": \"aa2bd659-55fb-4b99-8156-97ec05464646\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl\",\r\n \"name\": \"shanwgei-test-pl\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"a4df2858-5520-44a5-89dc-d8625831884f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2106230741.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"e4ca6a0c4064437fab9c818c0f1d9df0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-07-29T10:24:30.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shanwgei-test-pl-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shanwgeitestphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shanwgeitestphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shanwgei-test-pl-2021-07-29t10-22-20-714z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/shanwgei-test-pl/privateEndpointConnections/test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"name\": \"test.78838658-be55-4355-9306-11c0240f633b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/privateEndpoints/test\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"linkIdentifier\": \"637558548\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"e9017f01897f4a65bcf8e231ac3c01bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-devrp-rg/providers/Microsoft.HDInsight/clusters/test-sf-azapi\",\r\n \"name\": \"test-sf-azapi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany West Central\",\r\n \"etag\": \"ee54df08-9c53-417a-87c0-83b7e4376a29\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.4.8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2104210353.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4b0cd4d0cbbd43beba2d40c70958b1f6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-06-23T22:00:49.71\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-sf-azapi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsfazapihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.Storage/storageAccounts/testsfazapihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-sf-azapi-2021-06-23t21-57-58-260z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hozhaoTest/providers/Microsoft.HDInsight/clusters/interactivehive36standarde4sv3\",\r\n \"name\": \"interactivehive36standarde4sv3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4048ffd5-9df4-4faa-9635-8d19fd33d2ab\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"556f4cf994a5443f9b0baaa93af933dd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-07-06T03:43:35.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'CsmDocument_2_0' failed the validation. Error: 'VM size 'standard_e4s_v3' provided in the request is invalid or not supported for role 'headnode'. Valid values are: STANDARD_D13_V2,STANDARD_D14_V2,STANDARD_DS13_V2,STANDARD_DS14_V2,STANDARD_E16_V3,STANDARD_E16S_V3,STANDARD_E20_V3,STANDARD_E20S_V3,STANDARD_E32_V3,STANDARD_E32S_V3,STANDARD_E64_V3,STANDARD_E64I_V3,STANDARD_E64IS_V3,STANDARD_E64S_V3,STANDARD_E8_V3,STANDARD_E8S_V3'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark36d13v2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/hozhaoTest/providers/Microsoft.Storage/storageAccounts/spark36d13v2hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"interactivehive36standa-2021-07-06t03-41-05-257z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbug\",\r\n \"name\": \"clitestfixbug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d2f6c521-abf3-45be-9e0c-2f701c72724d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"950de3d531bb423eb0a586034a3e7206\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T07:01:23.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbug.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbug\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/clitestfixbuge2host\",\r\n \"name\": \"clitestfixbuge2host\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"11bfcbff-9d54-4421-80a8-edb25ddfa537\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"df3254fd7e564f9eb979d3b37287de2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-27T08:09:43.2\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clitestfixbuge2host.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clitestfixbuge2host\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/hdips-plconfig\",\r\n \"name\": \"hdips-plconfig\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dd9771ba-b469-460f-be04-07d2a1663572\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.2000.67.2109280352.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\r\n }\r\n },\r\n \"clusterId\": \"c88c6222064a4ba1bcb5a20bf953c7fd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-10-26T07:24:59.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdips-plconfig-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.12\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdips-plconfig\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/hfeb1hdinsight\",\r\n \"name\": \"hfeb1hdinsight\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"950d0f79-a429-484b-a225-ca34753440f1\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"94f864b7c7c44d5f8efd412fde466278\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-01T10:27:49.497\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hfeb1hdinsight-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"feb1hdinsighthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/feb1hdinsighthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"feb1hdinsight-2022-02-01t09-36-05-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/kafka1804rel1\",\r\n \"name\": \"kafka1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dcd03388-2dcd-42fd-a56f-57886e873566\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"4cb83c10697345a1ba82bafe4632da68\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:06:43.373\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafka1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafka1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/kafka1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafka1804rel1-2021-11-18t02-05-19-981z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/ps-test-customambaridb\",\r\n \"name\": \"ps-test-customambaridb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"dc33a310-f131-4d16-ad54-38f1fd28bb36\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.5.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2105282157.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c947642d8a434a0e989fe89921934600\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"zzy\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-06-25T03:26:46.237\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ps-test-customambaridb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ps-test-customambaridb\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.HDInsight/clusters/somfeb2hd\",\r\n \"name\": \"somfeb2hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fd449ae-2e3e-44ae-9af7-46df5c762ba7\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"68d40ad695da407cbdb0974af0281ef9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Network/virtualNetworks/somjan31vn/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-02T05:12:03.877\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"somfeb2hd-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"somfeb2hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnath-RG-31jan/providers/Microsoft.Storage/storageAccounts/somfeb2hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"somfeb2hd-2022-02-02t05-08-51-016z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": []\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel\",\r\n \"name\": \"spark1804rel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9ec1368d-09a4-4131-b9ea-76130bf8c368\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2110121746.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"cf27f21b68cc4944aa8fe9afed03c309\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T01:28:07.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804relhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804relhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel-2021-11-18t01-26-57-400z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel1\",\r\n \"name\": \"spark1804rel1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"e1e79959-5638-444c-9b94-0639020b656d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"4afc3d89289a47c4a909ec3375bdc1c5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T02:04:05.393\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark1804rel1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/spark1804rel1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel1-2021-11-18t02-03-00-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.HDInsight/clusters/spark1804rel3\",\r\n \"name\": \"spark1804rel3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d97e9edf-b1cc-4ee7-a12b-15a0ecca4ea4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.2000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.2000.0.2109280352.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.0\"\r\n }\r\n },\r\n \"clusterId\": \"3a7c48030d6f41b7bbfca7ea61a87498\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2021-11-18T03:00:04.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark1804rel3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adkorlepstacc.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adkorlep-devrp/providers/Microsoft.Storage/storageAccounts/adkorlepstacc\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark1804rel3-2021-11-18t02-59-11-390z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/testmsgraph1\",\r\n \"name\": \"testmsgraph1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"120fb6db-e245-44df-a93e-9643bc7850c2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202040503.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"909d18d761d34d67b8549829e6529f45\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-02-08T09:13:46.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testmsgraph1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1offlineverify1102\",\r\n \"name\": \"x1offlineverify1102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"4ed0cd0f-43ad-4152-885b-6cf9da9a0635\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2110271403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"311edd2109ab4f3d96356d2147146f38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-02T12:25:05.973\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1offlineverify1102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1offlineverihdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1offlineverihdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"x1offlineverify1102-2021-11-02t12-21-53-880z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-gcs-rotation\",\r\n \"name\": \"shangwei-test-gcs-rotation\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5ebc6a4f-18f4-4363-8fb2-6096ad9f36aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"181072bc7fbc48e4bc7b8a18ac2b9ddf\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-08T03:06:52.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-gcs-rotation.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestghdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestghdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-gcs-rotat-2021-10-08t03-02-49-549z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.HDInsight/clusters/sijin-test\",\r\n \"name\": \"sijin-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"01328369-b1f4-47ae-a0ff-09aec89768f5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"53fe2a909e1c46d6a3a49920d16898b6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-07T18:39:50.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijintesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin/providers/Microsoft.Storage/storageAccounts/sijintesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-test-2022-02-07t18-38-45-444z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568/listHosts?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OC9saXN0SG9zdHM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e37c9d3c-1849-49c0-9b2d-5bdac6d1ed1d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-correlation-request-id": [ - "c28bf778-b4b9-49db-93b2-0abc0921b480" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "c28bf778-b4b9-49db-93b2-0abc0921b480" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154745Z:c28bf778-b4b9-49db-93b2-0abc0921b480" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:47:44 GMT" - ], - "Content-Length": [ - "961" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "[\r\n {\r\n \"name\": \"gw-hdi-ps000000\",\r\n \"fqdn\": \"gw-hdi-ps000000.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"gw-hdi-ps000001\",\r\n \"fqdn\": \"gw-hdi-ps000001.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"hn0-hdi-ps\",\r\n \"fqdn\": \"hn0-hdi-ps.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"hn1-hdi-ps\",\r\n \"fqdn\": \"hn1-hdi-ps.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"wn2-hdi-ps\",\r\n \"fqdn\": \"wn2-hdi-ps.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"wn5-hdi-ps\",\r\n \"fqdn\": \"wn5-hdi-ps.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"wn6-hdi-ps\",\r\n \"fqdn\": \"wn6-hdi-ps.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"zk0-hdi-ps\",\r\n \"fqdn\": \"zk0-hdi-ps.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"zk3-hdi-ps\",\r\n \"fqdn\": \"zk3-hdi-ps.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n },\r\n {\r\n \"name\": \"zk5-hdi-ps\",\r\n \"fqdn\": \"zk5-hdi-ps.d1seb1yzz0ou1lyxjtkictwlvf.bx.internal.cloudapp.net\"\r\n }\r\n]", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test7943/providers/Microsoft.HDInsight/clusters/hdi-ps-test9568?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0OTU2OD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1964f97d-49a1-49c6-8965-d3996fb880d9" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/46d953df-c76b-4c9d-8ae1-33a3b5e12f89-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/46d953df-c76b-4c9d-8ae1-33a3b5e12f89-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "d02cc8a6-b399-4ef3-9b09-12bc0b653c98" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "a304340f-ceb9-456b-8ecc-f3ec04cd0d6d" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154754Z:a304340f-ceb9-456b-8ecc-f3ec04cd0d6d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:47:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/46d953df-c76b-4c9d-8ae1-33a3b5e12f89-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvNDZkOTUzZGYtYzc2Yi00YzlkLThhZTEtMzNhM2I1ZTEyZjg5LTAtcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1964f97d-49a1-49c6-8965-d3996fb880d9" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3f63ded6-ef9b-44e8-858a-836a8f0b9275" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6870080e-5006-407b-8bb4-236958b68d45" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154855Z:6870080e-5006-407b-8bb4-236958b68d45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:48:55 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/46d953df-c76b-4c9d-8ae1-33a3b5e12f89-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy80NmQ5NTNkZi1jNzZiLTRjOWQtOGFlMS0zM2EzYjVlMTJmODktMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1964f97d-49a1-49c6-8965-d3996fb880d9" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2d75cadb-4db4-49ba-8885-899244de897e" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0998d095-a96c-4a93-abec-d1c750078493" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154855Z:0998d095-a96c-4a93-abec-d1c750078493" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:48:55 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test7943?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3OTQzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "2d845cc6-bd95-457b-a56e-571683a73b74" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "72179c97-8800-4613-bff4-ed592fc65292" - ], - "x-ms-correlation-request-id": [ - "72179c97-8800-4613-bff4-ed592fc65292" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154859Z:72179c97-8800-4613-bff4-ed592fc65292" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:48:59 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "2d32c41d-4295-4b4f-af23-85bf76d27117" - ], - "x-ms-correlation-request-id": [ - "2d32c41d-4295-4b4f-af23-85bf76d27117" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154914Z:2d32c41d-4295-4b4f-af23-85bf76d27117" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:49:14 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "0710a9f9-a7cb-47e2-b100-01f3febede00" - ], - "x-ms-correlation-request-id": [ - "0710a9f9-a7cb-47e2-b100-01f3febede00" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154930Z:0710a9f9-a7cb-47e2-b100-01f3febede00" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:49:29 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "1925b2de-8538-4d47-9bab-a2691434a594" - ], - "x-ms-correlation-request-id": [ - "1925b2de-8538-4d47-9bab-a2691434a594" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T154945Z:1925b2de-8538-4d47-9bab-a2691434a594" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:49:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "34452655-64b1-4f72-a7e5-45ba986a72bd" - ], - "x-ms-correlation-request-id": [ - "34452655-64b1-4f72-a7e5-45ba986a72bd" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T155001Z:34452655-64b1-4f72-a7e5-45ba986a72bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:50:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "526f2411-75b8-4434-8576-205d3b08babd" - ], - "x-ms-correlation-request-id": [ - "526f2411-75b8-4434-8576-205d3b08babd" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T155016Z:526f2411-75b8-4434-8576-205d3b08babd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:50:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "8f28eaf0-6e6e-4825-9b38-531ca85c0fd2" - ], - "x-ms-correlation-request-id": [ - "8f28eaf0-6e6e-4825-9b38-531ca85c0fd2" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T155031Z:8f28eaf0-6e6e-4825-9b38-531ca85c0fd2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:50:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "b29c7eb6-52ab-43f5-b79b-bd15a56ca73a" - ], - "x-ms-correlation-request-id": [ - "b29c7eb6-52ab-43f5-b79b-bd15a56ca73a" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T155047Z:b29c7eb6-52ab-43f5-b79b-bd15a56ca73a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:50:47 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "c81d4fc5-53f6-44fc-9d38-405d25c9b047" - ], - "x-ms-correlation-request-id": [ - "c81d4fc5-53f6-44fc-9d38-405d25c9b047" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T155102Z:c81d4fc5-53f6-44fc-9d38-405d25c9b047" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:51:02 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "447dd3f6-dc06-4826-99cb-f9ab17bd9241" - ], - "x-ms-correlation-request-id": [ - "447dd3f6-dc06-4826-99cb-f9ab17bd9241" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T155118Z:447dd3f6-dc06-4826-99cb-f9ab17bd9241" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:51:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDc5NDMtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGM1TkRNdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19044.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.54" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "cd73b7e1-d4cd-4933-8a78-13bae48e86aa" - ], - "x-ms-correlation-request-id": [ - "cd73b7e1-d4cd-4933-8a78-13bae48e86aa" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20220208T155118Z:cd73b7e1-d4cd-4933-8a78-13bae48e86aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 08 Feb 2022 15:51:18 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-HostRelatedCommands": [ - "hdi-ps-test9568", - "group-ps-test7943", - "storagepstest329" + "hdi-ps-test3471", + "group-ps-test8649", + "storagepstest5311" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightMonitoringTests/TestMonitoringRelatedCommands.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightMonitoringTests/TestMonitoringRelatedCommands.json index 9496855268a6..036f879b4783 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightMonitoringTests/TestMonitoringRelatedCommands.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightMonitoringTests/TestMonitoringRelatedCommands.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4935?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test5231?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0d69beb1-b1d0-48f8-914e-fbc9033fb180" + "d4aef1e8-ef77-4586-a8a5-de9f90b38c5e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "31" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "71b6e48c-6e09-4f03-84fc-f5448e10a3f8" + "3bd1b1c0-4f8c-49f4-9ebc-b08f2797307b" ], "x-ms-correlation-request-id": [ - "71b6e48c-6e09-4f03-84fc-f5448e10a3f8" + "3bd1b1c0-4f8c-49f4-9ebc-b08f2797307b" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122059Z:71b6e48c-6e09-4f03-84fc-f5448e10a3f8" + "KOREACENTRAL:20230724T053310Z:3bd1b1c0-4f8c-49f4-9ebc-b08f2797307b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:20:59 GMT" + "Mon, 24 Jul 2023 05:33:09 GMT" ], "Content-Length": [ - "188" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935\",\r\n \"name\": \"group-ps-test4935\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5231\",\r\n \"name\": \"group-ps-test5231\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.Storage/storageAccounts/storagepstest6076?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDYwNzY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5231/providers/Microsoft.Storage/storageAccounts/storagepstest1738?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDE3Mzg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6d51718-27ba-40f6-9893-7304290d3c28" + "18088059-f394-4c66-8a90-d8ceacd6ebff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "101" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/westus2/asyncoperations/01b2bbea-563e-42b2-a751-c20d95af0ac0?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/568e71b3-b871-4b33-bff3-835bdb62e1d9?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "01b2bbea-563e-42b2-a751-c20d95af0ac0" + "568e71b3-b871-4b33-bff3-835bdb62e1d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,16 +117,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "4e3478a6-ee7e-408a-b472-215a7ed22106" + "749c2f2e-9855-4dbb-8170-c6369c7ead3a" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122102Z:4e3478a6-ee7e-408a-b472-215a7ed22106" + "KOREACENTRAL:20230724T053317Z:749c2f2e-9855-4dbb-8170-c6369c7ead3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:21:01 GMT" + "Mon, 24 Jul 2023 05:33:17 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,18 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/westus2/asyncoperations/01b2bbea-563e-42b2-a751-c20d95af0ac0?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzMi9hc3luY29wZXJhdGlvbnMvMDFiMmJiZWEtNTYzZS00MmIyLWE3NTEtYzIwZDk1YWYwYWMwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/568e71b3-b871-4b33-bff3-835bdb62e1d9?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy81NjhlNzFiMy1iODcxLTRiMzMtYmZmMy04MzViZGI2MmUxZDk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -161,8 +161,14 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/568e71b3-b871-4b33-bff3-835bdb62e1d9?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" + ], "x-ms-request-id": [ - "54b7cb9b-c666-4b11-aa6b-e5b378713da0" + "84ec38db-d401-4a5b-b7a0-c6ab074b7172" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,52 +177,46 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" ], "x-ms-correlation-request-id": [ - "d0b248a3-8434-4ffc-8263-0e7de0c65216" + "800cd33e-8468-4594-bebe-620d56f70c12" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122119Z:d0b248a3-8434-4ffc-8263-0e7de0c65216" + "KOREACENTRAL:20230724T053334Z:800cd33e-8468-4594-bebe-620d56f70c12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:21:19 GMT" - ], - "Content-Length": [ - "1372" + "Mon, 24 Jul 2023 05:33:33 GMT" ], "Content-Type": [ - "application/json" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.Storage/storageAccounts/storagepstest6076\",\r\n \"name\": \"storagepstest6076\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-02T12:21:01.9883931Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-02T12:21:01.9883931Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-02T12:21:01.9102229Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest6076.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest6076.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest6076.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest6076.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westcentralus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest6076-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest6076-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest6076-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.Storage/storageAccounts/storagepstest6076/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDYwNzYvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/568e71b3-b871-4b33-bff3-835bdb62e1d9?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy81NjhlNzFiMy1iODcxLTRiMzMtYmZmMy04MzViZGI2MmUxZDk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "61dcb995-066b-465f-86a5-a62e9f7a9971" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "586ef2e8-9fdf-4c76-9005-e8be72875f78" + "24921c0c-efa4-4b5c-b9a5-b4efc2661a87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,23 +233,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "9bf94f98-02b0-4935-865d-95c734e7b318" + "5cd8f5eb-dd89-4055-926b-b8cd228d14b9" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122120Z:9bf94f98-02b0-4935-865d-95c734e7b318" + "KOREACENTRAL:20230724T053337Z:5cd8f5eb-dd89-4055-926b-b8cd228d14b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:21:19 GMT" + "Mon, 24 Jul 2023 05:33:36 GMT" ], "Content-Length": [ - "288" + "1393" ], "Content-Type": [ "application/json" @@ -258,34 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"gk8NPXgOJrGHm2nuLQ1QeF4CIwvBoFXLc1uSFUshaH4OWyRd9odtedbtEwZvcRCumTADRPYm3sVZHbqD8ewsPg==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"Qz67BQ0yIPTKL240hc0iS1boV6WxCW+Y9Z5B+zx9jfbhbrBELrmr90MLElVIDdE45xjFaSA7uEa4dtQi8Qb7fw==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5231/providers/Microsoft.Storage/storageAccounts/storagepstest1738\",\r\n \"name\": \"storagepstest1738\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T05:33:11.3126855Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T05:33:11.3126855Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-24T05:33:11.172061Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest1738.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest1738.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest1738.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest1738.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest1738-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest1738-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest1738-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://hdi-ps-test2631@storagepstest6076.blob.core.windows.net\",\r\n \"fs.azure.account.key.storagepstest6076.blob.core.windows.net\": \"gk8NPXgOJrGHm2nuLQ1QeF4CIwvBoFXLc1uSFUshaH4OWyRd9odtedbtEwZvcRCumTADRPYm3sVZHbqD8ewsPg==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\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_D12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5231/providers/Microsoft.Storage/storageAccounts/storagepstest1738/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDE3MzgvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "3a76fe7c-77ad-49c4-a79b-66f54baae47e" + "abbf85a1-3756-4861-8c6c-37639bf2b976" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1891" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -293,65 +287,62 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "\"73bbaaf5-af7a-4965-9e5c-dd4e91563950\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631?api-version=2018-06-01-preview" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview" - ], "x-ms-request-id": [ - "a44b9336-38a3-4e49-91e1-5c013f695177" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "c0467760-6abc-4bc2-9364-aa066d6ca240" + "62aa41ae-137a-4b9c-8114-f242a00d9ec2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "731a3edb-c7da-417a-916e-37baab5e1a50" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122127Z:c0467760-6abc-4bc2-9364-aa066d6ca240" + "KOREACENTRAL:20230724T053338Z:731a3edb-c7da-417a-916e-37baab5e1a50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:21:27 GMT" + "Mon, 24 Jul 2023 05:33:38 GMT" ], "Content-Length": [ - "1258" + "288" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631\",\r\n \"name\": \"hdi-ps-test2631\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"73bbaaf5-af7a-4965-9e5c-dd4e91563950\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2019-09-02T12:21:26.517\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/yuchen-test-ps/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test4253?api-version=2021-12-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL3l1Y2hlbi10ZXN0LXBzL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NDI1Mz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6ce59e97-ec0a-44c9-8cb1-3968ba2e59e0" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -359,56 +350,65 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "f88b63f3-8bae-428f-88f4-e6e0b80c9047" + "x-ms-failure-cause": [ + "gateway" ], - "x-ms-hdi-served-by": [ - "westus2" + "x-ms-request-id": [ + "259a9df5-16e4-47d0-a617-3314f39ef58e" ], "x-ms-correlation-request-id": [ - "8958da84-80bc-4b1b-b843-fc0259b7272f" + "259a9df5-16e4-47d0-a617-3314f39ef58e" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230724T053344Z:259a9df5-16e4-47d0-a617-3314f39ef58e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122157Z:8958da84-80bc-4b1b-b843-fc0259b7272f" - ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:21:57 GMT" - ], - "Content-Length": [ - "23" + "Mon, 24 Jul 2023 05:33:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "248" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.OperationalInsights/workspaces/workspace-ps-test4253' under resource group 'yuchen-test-ps' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/yuchen-test-ps/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test4253?api-version=2021-12-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL3l1Y2hlbi10ZXN0LXBzL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NDI1Mz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", "RequestHeaders": { + "x-ms-client-request-id": [ + "6ce59e97-ec0a-44c9-8cb1-3968ba2e59e0" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"features\": {}\r\n },\r\n \"tags\": {},\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -416,89 +416,44 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "a0b2a6af-077f-46c7-8d27-4bd51e1688d8" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "0141694c-6a11-4da2-954e-94435338059f" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yuchen-test-ps/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test4253?api-version=2021-12-01-preview" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "Access-Control-Allow-Origin": [ + "*" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122228Z:0141694c-6a11-4da2-954e-94435338059f" + "Request-Context": [ + "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 02 Sep 2019 12:22:27 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "api-supported-versions": [ + "2021-12-01-preview" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Pragma": [ - "no-cache" + "X-Powered-By": [ + "ASP.NET" ], "x-ms-request-id": [ - "803fc337-783c-4673-a960-3eea3eb6f1b9" - ], - "x-ms-hdi-served-by": [ - "westus2" + "1c1fd924-416e-44fd-a4ea-11a1fb02e3a9" ], "x-ms-correlation-request-id": [ - "4cc4f9e2-69e9-46bf-9419-6996ef026a82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "1c1fd924-416e-44fd-a4ea-11a1fb02e3a9" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122259Z:4cc4f9e2-69e9-46bf-9419-6996ef026a82" - ], - "X-Content-Type-Options": [ - "nosniff" + "KOREACENTRAL:20230724T053346Z:1c1fd924-416e-44fd-a4ea-11a1fb02e3a9" ], "Date": [ - "Mon, 02 Sep 2019 12:22:58 GMT" + "Mon, 24 Jul 2023 05:33:46 GMT" ], "Content-Length": [ - "23" + "859" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,22 +462,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"properties\": {\r\n \"customerId\": \"6f11717d-f612-4402-aaf0-40da94e591e8\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"PerNode\",\r\n \"lastSkuUpdate\": \"2023-07-24T05:33:46.7046338Z\"\r\n },\r\n \"retentionInDays\": 31,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": \"2023-07-24T17:00:00Z\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"2023-07-24T05:33:46.7046338Z\",\r\n \"modifiedDate\": \"2023-07-24T05:33:46.7046338Z\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yuchen-test-ps/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test4253\",\r\n \"name\": \"workspace-ps-test4253\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yuchen-test-ps/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test4253?api-version=2021-12-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL3l1Y2hlbi10ZXN0LXBzL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NDI1Mz9hcGktdmVyc2lvbj0yMDIxLTEyLTAxLXByZXZpZXc=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6ce59e97-ec0a-44c9-8cb1-3968ba2e59e0" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -530,89 +488,41 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ea14adbd-8794-4e8e-be3e-e6b2c491f866" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "274cef96-c395-4da0-ad7b-7392ace1eaeb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122330Z:274cef96-c395-4da0-ad7b-7392ace1eaeb" + "Access-Control-Allow-Origin": [ + "*" + ], + "Request-Context": [ + "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Mon, 02 Sep 2019 12:23:30 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "api-supported-versions": [ + "2021-12-01-preview" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Pragma": [ - "no-cache" + "X-Powered-By": [ + "ASP.NET" ], "x-ms-request-id": [ - "497f750e-86db-455a-a3b9-d9812270eef9" - ], - "x-ms-hdi-served-by": [ - "westus2" + "7a653544-71cf-4a7e-ae4e-aa51effec203" ], "x-ms-correlation-request-id": [ - "a3cbd38e-be88-4850-afed-c8f4af959591" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "7a653544-71cf-4a7e-ae4e-aa51effec203" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122400Z:a3cbd38e-be88-4850-afed-c8f4af959591" - ], - "X-Content-Type-Options": [ - "nosniff" + "KOREACENTRAL:20230724T053417Z:7a653544-71cf-4a7e-ae4e-aa51effec203" ], "Date": [ - "Mon, 02 Sep 2019 12:24:00 GMT" + "Mon, 24 Jul 2023 05:34:16 GMT" ], "Content-Length": [ - "23" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -621,22 +531,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"customerId\": \"6f11717d-f612-4402-aaf0-40da94e591e8\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"PerNode\",\r\n \"lastSkuUpdate\": \"2023-07-24T05:33:46.7046338Z\"\r\n },\r\n \"retentionInDays\": 31,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": \"2023-07-24T17:00:00Z\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n },\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"createdDate\": \"2023-07-24T05:33:46.7046338Z\",\r\n \"modifiedDate\": \"2023-07-24T05:33:46.7046338Z\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yuchen-test-ps/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test4253\",\r\n \"name\": \"workspace-ps-test4253\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/yuchen-test-ps/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test4253/sharedKeys?api-version=2020-08-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL3l1Y2hlbi10ZXN0LXBzL3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NDI1My9zaGFyZWRLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDgtMDE=", + "RequestMethod": "POST", "RequestHeaders": { + "x-ms-client-request-id": [ + "e970b938-27ec-4c9b-9b02-09ee0874ecec" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.25.0.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -644,32 +560,41 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "3410aead-d61b-4b77-a00f-8958c57993e9" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], - "x-ms-hdi-served-by": [ - "westus2" + "Access-Control-Allow-Origin": [ + "*" ], - "x-ms-correlation-request-id": [ - "5f8d57f1-7909-4703-a9db-e9f7a59f1e7e" + "Request-Context": [ + "appId=cid-v1:e6336c63-aab2-45f0-996a-e5dbab2a1508" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "api-supported-versions": [ + "2015-03-20, 2020-08-01, 2020-10-01, 2021-06-01, 2022-10-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122431Z:5f8d57f1-7909-4703-a9db-e9f7a59f1e7e" + "x-ms-request-id": [ + "a7031e70-8386-44a6-b897-a6bf2139b1ad" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-correlation-request-id": [ + "a7031e70-8386-44a6-b897-a6bf2139b1ad" + ], + "x-ms-routing-request-id": [ + "KOREACENTRAL:20230724T053418Z:a7031e70-8386-44a6-b897-a6bf2139b1ad" ], "Date": [ - "Mon, 02 Sep 2019 12:24:30 GMT" + "Mon, 24 Jul 2023 05:34:17 GMT" ], "Content-Length": [ - "23" + "223" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,3204 +603,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "611e9ceb-57bf-48c3-b9fd-d1bc64c615e0" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "94077bf1-0c73-42bf-b6a9-8cd92c191ed6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122501Z:94077bf1-0c73-42bf-b6a9-8cd92c191ed6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:25:01 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c5338093-06d7-44a4-838b-346e800a1b06" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "37089d29-a60f-4bfd-8db2-7d3ded448397" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122532Z:37089d29-a60f-4bfd-8db2-7d3ded448397" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:25:32 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "364a23a7-3a73-43fd-a93e-a273cac62c56" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "830fca4d-a002-48ce-9b92-259a14e8f536" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122603Z:830fca4d-a002-48ce-9b92-259a14e8f536" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:26:02 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "42e78b86-3985-4579-a412-e53cc065e354" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "4ccb46b1-b776-4182-9662-2e4c64d7ac7c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122634Z:4ccb46b1-b776-4182-9662-2e4c64d7ac7c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:26:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f9170b16-260c-4244-940d-20811821f803" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "83d59b38-a8de-4ee1-9f56-4af31bffd8a0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122704Z:83d59b38-a8de-4ee1-9f56-4af31bffd8a0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:27:03 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c397222b-8188-406e-bb54-df1e05f5e5f3" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "6dc68510-3327-4925-a77a-961574c3b3de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122735Z:6dc68510-3327-4925-a77a-961574c3b3de" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:27:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ec165742-e68c-4344-950f-ca5fc43323c4" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "4fc7d34d-8c51-4fd2-993e-bbd1e39b3f68" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122806Z:4fc7d34d-8c51-4fd2-993e-bbd1e39b3f68" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:28:05 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "94562e49-674f-4961-b8b8-24949188eeca" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "d5664398-ae11-40fd-9675-0edc2b5de3f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122836Z:d5664398-ae11-40fd-9675-0edc2b5de3f3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:28:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e02460a4-d50e-4b4b-88f2-7713ca779d74" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "d59f372e-a946-4e29-bfa4-e46ecb49e474" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122907Z:d59f372e-a946-4e29-bfa4-e46ecb49e474" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:29:06 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b989ecff-de0a-4f2f-8d03-e05b2426515d" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "862da304-49ef-4cc1-bc93-111177dbf113" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T122938Z:862da304-49ef-4cc1-bc93-111177dbf113" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:29:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e6fc4673-ee3e-4640-a919-9a506bbf378d" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "4ea78435-322f-4f3a-a417-c19e48a6caa0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123009Z:4ea78435-322f-4f3a-a417-c19e48a6caa0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:30:08 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "24d6b345-1cda-477f-84a5-4f7c6c3e2e66" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "5b3e112a-1875-4055-891d-346e16c75574" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123039Z:5b3e112a-1875-4055-891d-346e16c75574" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:30:38 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "02bf91c1-2c37-4282-ae10-3c7bca49f96b" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "04c25152-2414-49e8-8548-2551b9d14b72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123110Z:04c25152-2414-49e8-8548-2551b9d14b72" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:31:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "95aaa391-7b12-4831-b3aa-400b34f1d22b" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "6cc996b7-eef3-45c6-ad0d-9211eb3a69bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123141Z:6cc996b7-eef3-45c6-ad0d-9211eb3a69bf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:31:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd75d216-d91c-43da-b719-3dbe3bd37cc9" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "bcf003b0-53f7-4d23-a4db-64056ccf951f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123212Z:bcf003b0-53f7-4d23-a4db-64056ccf951f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:32:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d97bcf07-29cd-454b-91e1-628bad837815" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "8e167403-0173-4482-93dc-c15857ad191c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123242Z:8e167403-0173-4482-93dc-c15857ad191c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:32:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "01707af4-2c58-4c25-9a0b-4da26f8414f4" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "54c8426e-431b-4e58-8f87-1a1e0aed6651" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123313Z:54c8426e-431b-4e58-8f87-1a1e0aed6651" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:33:13 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ac1465a0-bd0b-4ba4-a887-40c3da1be15e" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "60e4d9de-c4a3-418d-a36c-afd7aaa1fbc7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123344Z:60e4d9de-c4a3-418d-a36c-afd7aaa1fbc7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:33:43 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1bd71117-b846-4e18-a65b-346e2601c161" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "c8180948-f5fd-4a0f-bf57-59169261d187" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123414Z:c8180948-f5fd-4a0f-bf57-59169261d187" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:34:13 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cf45518a-3a15-4a77-853f-175c7d574cba" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "d3a05504-b73e-4dcb-a342-c06964fe4629" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123445Z:d3a05504-b73e-4dcb-a342-c06964fe4629" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:34:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d2b75486-037b-4ffb-a062-985509df5df9" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "ac1d65fc-ef44-4cce-bb4b-991f0aa2ebf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123516Z:ac1d65fc-ef44-4cce-bb4b-991f0aa2ebf8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:35:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1005ef23-dd3d-4158-b55f-dc3d63fe5b5a" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "cf7d0907-a5ab-42ab-a119-0456a0e71e17" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123547Z:cf7d0907-a5ab-42ab-a119-0456a0e71e17" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:35:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "845f2de3-a168-41b0-aa94-1c396ccf3f14" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "f8bfeb79-bcb8-42c4-b7f4-c1a1daa955d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123618Z:f8bfeb79-bcb8-42c4-b7f4-c1a1daa955d7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:36:18 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "66136077-ffc2-4cb4-9126-d5d2a6ea179a" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "ff4ad1d7-2208-4f57-84d0-5a9a7caaca4d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123648Z:ff4ad1d7-2208-4f57-84d0-5a9a7caaca4d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:36:47 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "91e4f646-8bc5-4fb7-80a7-9f228b838b7f" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "c3ada167-ad68-4152-813c-4327e91f3d05" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123649Z:c3ada167-ad68-4152-813c-4327e91f3d05" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:36:48 GMT" - ], - "Content-Length": [ - "1488" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631\",\r\n \"name\": \"hdi-ps-test2631\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"73bbaaf5-af7a-4965-9e5c-dd4e91563950\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-09-02T12:21:26.517\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2631-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2631.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4935/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test5157?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NTE1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5dd31040-e76f-4094-a823-28111c13d28f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.19.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "559f180e-221c-464d-becc-698e44ca8206" - ], - "x-ms-correlation-request-id": [ - "559f180e-221c-464d-becc-698e44ca8206" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123650Z:559f180e-221c-464d-becc-698e44ca8206" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:36:50 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "183" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.OperationalInsights/workspaces/workspace-ps-test5157' under resource group 'group-ps-test4935' was not found.\"\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4935/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test5157?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NTE1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.19.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ebdc4fa1-32c7-456b-8c5d-41889977e894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Request-Context": [ - "appId=cid-v1:3d24a429-e724-4d71-9886-21ad884cf893" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "58531e30-06ff-4030-b734-0f677d92c888" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123727Z:58531e30-06ff-4030-b734-0f677d92c888" - ], - "Date": [ - "Mon, 02 Sep 2019 12:37:27 GMT" - ], - "Content-Length": [ - "832" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"c5be925e-9765-4a6c-a7b3-7edb7ce11396\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"retentionInDays\": 31,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": \"Tue, 03 Sep 2019 06:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4935/providers/microsoft.operationalinsights/workspaces/workspace-ps-test5157\",\r\n \"name\": \"workspace-ps-test5157\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4935/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test5157?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NTE1Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n }\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "07498478-5d5f-49ae-a352-a896e5b498b3" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.19.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "117" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c341d1fc-4cb7-4558-bd19-6f67610afa76" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Request-Context": [ - "appId=cid-v1:3d24a429-e724-4d71-9886-21ad884cf893" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "1639ac31-37d9-4f9e-af5f-e81dbe6d0bf6" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123657Z:1639ac31-37d9-4f9e-af5f-e81dbe6d0bf6" - ], - "Date": [ - "Mon, 02 Sep 2019 12:36:57 GMT" - ], - "Content-Length": [ - "831" - ], - "Content-Type": [ - "application/json" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"source\": \"Azure\",\r\n \"customerId\": \"c5be925e-9765-4a6c-a7b3-7edb7ce11396\",\r\n \"provisioningState\": \"Creating\",\r\n \"sku\": {\r\n \"name\": \"pernode\"\r\n },\r\n \"retentionInDays\": 31,\r\n \"features\": {\r\n \"legacy\": 0,\r\n \"searchVersion\": 1,\r\n \"enableLogAccessUsingOnlyResourcePermissions\": true\r\n },\r\n \"workspaceCapping\": {\r\n \"dailyQuotaGb\": -1.0,\r\n \"quotaNextResetTime\": \"Tue, 03 Sep 2019 06:00:00 GMT\",\r\n \"dataIngestionStatus\": \"RespectQuota\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4935/providers/microsoft.operationalinsights/workspaces/workspace-ps-test5157\",\r\n \"name\": \"workspace-ps-test5157\",\r\n \"type\": \"Microsoft.OperationalInsights/workspaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {}\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4935/providers/Microsoft.OperationalInsights/workspaces/workspace-ps-test5157/sharedKeys?api-version=2015-11-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuT3BlcmF0aW9uYWxJbnNpZ2h0cy93b3Jrc3BhY2VzL3dvcmtzcGFjZS1wcy10ZXN0NTE1Ny9zaGFyZWRLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDEtcHJldmlldw==", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "44172ece-4460-48b2-ac9d-67ee605f448b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.OperationalInsights.OperationalInsightsManagementClient/0.19.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "X-AMS-APIVersion": [ - "WebAPI1.0" - ], - "CacheControl": [ - "no-cache" - ], - "x-ms-request-id": [ - "9302ae80-01f1-4ac6-929b-71e3ae477144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "X-Powered-By": [ - "ASP.NET", - "ASP.NET" - ], - "Request-Context": [ - "appId=cid-v1:3d24a429-e724-4d71-9886-21ad884cf893" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "b04197d0-5e8f-43db-87f3-9567937786d2" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123728Z:b04197d0-5e8f-43db-87f3-9567937786d2" - ], - "Date": [ - "Mon, 02 Sep 2019 12:37:28 GMT" - ], - "Content-Length": [ - "235" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"primarySharedKey\": \"2TaaHPI196MbjquCxYzgZwHlty+fCc2zFaigGGdrN3+zDkj2KpxOaXk6hm2Gi+hudKievw1nhpumS5+ceL4MZg==\",\r\n \"secondarySharedKey\": \"v7oZxO/TcAj+Ea84v/Dxzr7D6/fErlDn68kHl7ztBtylygJi22vTyC1o7KIMQlletkEBr1nQBEqFZp6QUb4QWg==\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/extensions/clustermonitoring?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9leHRlbnNpb25zL2NsdXN0ZXJtb25pdG9yaW5nP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "752d88bc-efee-44a8-a6d4-4ea2b4e9a651" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "80c23445-1adc-420b-9202-3075a73ab4d4" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "3c04d2eb-efdc-4a27-8e04-a9dc9c394e55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123729Z:3c04d2eb-efdc-4a27-8e04-a9dc9c394e55" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:37:29 GMT" - ], - "Content-Length": [ - "53" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": false,\r\n \"workspaceId\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/extensions/clustermonitoring?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9leHRlbnNpb25zL2NsdXN0ZXJtb25pdG9yaW5nP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0ab6a7b0-c65a-453d-b2fc-0e7802fcb74f" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "1bad3bcd-2e06-4f12-88f5-67ec67b538db" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124033Z:1bad3bcd-2e06-4f12-88f5-67ec67b538db" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:40:32 GMT" - ], - "Content-Length": [ - "86" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": true,\r\n \"workspaceId\": \"c5be925e-9765-4a6c-a7b3-7edb7ce11396\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/extensions/clustermonitoring?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9leHRlbnNpb25zL2NsdXN0ZXJtb25pdG9yaW5nP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3dce2f7d-34d4-45f3-a708-4874c5ca1f25" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fad81c74-54b0-43e1-a43c-0ebd7a922364" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "37740679-dcfb-4472-8307-cb2f968d7b45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124034Z:37740679-dcfb-4472-8307-cb2f968d7b45" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:40:33 GMT" - ], - "Content-Length": [ - "86" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": true,\r\n \"workspaceId\": \"c5be925e-9765-4a6c-a7b3-7edb7ce11396\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/extensions/clustermonitoring?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9leHRlbnNpb25zL2NsdXN0ZXJtb25pdG9yaW5nP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b14d60a6-dafc-47b0-a885-a6e7b9063e74" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8e29687d-3dd7-4b85-a954-261281db72c0" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "e340e385-d71d-460a-9d77-dd7092278aca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124237Z:e340e385-d71d-460a-9d77-dd7092278aca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:42:37 GMT" - ], - "Content-Length": [ - "53" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"clusterMonitoringEnabled\": false,\r\n \"workspaceId\": null\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/extensions/clustermonitoring?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9leHRlbnNpb25zL2NsdXN0ZXJtb25pdG9yaW5nP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"workspaceId\": \"c5be925e-9765-4a6c-a7b3-7edb7ce11396\",\r\n \"primaryKey\": \"2TaaHPI196MbjquCxYzgZwHlty+fCc2zFaigGGdrN3+zDkj2KpxOaXk6hm2Gi+hudKievw1nhpumS5+ceL4MZg==\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e07a0d2d-4a35-4f66-8c4d-14bb060122a5" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "170" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/operationresults/4be084c2-e94f-40ac-a965-367edac42c94-0?api-version=2018-06-01-preview" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/4be084c2-e94f-40ac-a965-367edac42c94-0?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "08c74f66-b80e-4f4f-b8bf-b6722a005584" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "ab8a24db-cb7c-4a2b-8388-b1ce9c8e4991" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123730Z:ab8a24db-cb7c-4a2b-8388-b1ce9c8e4991" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:37:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/4be084c2-e94f-40ac-a965-367edac42c94-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy80YmUwODRjMi1lOTRmLTQwYWMtYTk2NS0zNjdlZGFjNDJjOTQtMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9dab658d-ce6c-4d71-96f2-32a7f9ad81d1" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "ec99bcfc-ed5f-4b9a-bbb5-7b527c7a4416" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123831Z:ec99bcfc-ed5f-4b9a-bbb5-7b527c7a4416" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:38:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/4be084c2-e94f-40ac-a965-367edac42c94-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy80YmUwODRjMi1lOTRmLTQwYWMtYTk2NS0zNjdlZGFjNDJjOTQtMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "6ca156cd-51d2-44ae-8c3c-0ae43b28ea93" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "a3747a91-3c92-4777-a76c-5aa3d47c80c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T123932Z:a3747a91-3c92-4777-a76c-5aa3d47c80c0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:39:31 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/4be084c2-e94f-40ac-a965-367edac42c94-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy80YmUwODRjMi1lOTRmLTQwYWMtYTk2NS0zNjdlZGFjNDJjOTQtMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f6cff4ad-f28e-4bae-8bd5-4fdd82dd7ca7" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "b575759e-72a7-48b1-b0c6-f70aa27be6c4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124033Z:b575759e-72a7-48b1-b0c6-f70aa27be6c4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:40:32 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/extensions/clustermonitoring?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9leHRlbnNpb25zL2NsdXN0ZXJtb25pdG9yaW5nP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c875f754-a844-4e4d-ac77-5d961ac1b16b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/operationresults/47160bd8-74e9-437a-b732-eba9b1bcd460-0?api-version=2018-06-01-preview" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/47160bd8-74e9-437a-b732-eba9b1bcd460-0?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "fae5f3ab-5876-4d13-80a3-95e677015c54" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "cbb96514-21cd-4c31-932d-c1b5de9a9655" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124035Z:cbb96514-21cd-4c31-932d-c1b5de9a9655" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:40:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/47160bd8-74e9-437a-b732-eba9b1bcd460-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy80NzE2MGJkOC03NGU5LTQzN2EtYjczMi1lYmE5YjFiY2Q0NjAtMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bbd68269-265a-4c3d-b298-6a7c0cca7c1f" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "17f2f53a-887b-4035-902c-a3d37706f940" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124136Z:17f2f53a-887b-4035-902c-a3d37706f940" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:41:35 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/azureasyncoperations/47160bd8-74e9-437a-b732-eba9b1bcd460-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9henVyZWFzeW5jb3BlcmF0aW9ucy80NzE2MGJkOC03NGU5LTQzN2EtYjczMi1lYmE5YjFiY2Q0NjAtMD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a3e84035-d3b9-413d-8d86-5fe55ac0f7c0" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "39113143-09c0-4b56-a8e5-53a107212556" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124236Z:39113143-09c0-4b56-a8e5-53a107212556" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:42:36 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631/operationresults/47160bd8-74e9-437a-b732-eba9b1bcd460-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMS9vcGVyYXRpb25yZXN1bHRzLzQ3MTYwYmQ4LTc0ZTktNDM3YS1iNzMyLWViYTliMWJjZDQ2MC0wP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ef5aa373-c95d-4d22-8299-4983dac9ee43" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "317d528c-6323-42c1-9ecc-e9fd217036b9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124237Z:317d528c-6323-42c1-9ecc-e9fd217036b9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:42:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ffc7e84c-921f-4d13-b271-723f60c6b857" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "77e894ba-bdad-433f-90a0-f7bf34ba0271", - "8510ca84-e035-4e7b-afb1-9ad0de01508f", - "2bb09371-621d-48c1-b078-3975f88676f7", - "a3a82593-34b7-44c0-991f-2dcaa1721f44", - "d3b94960-409f-4924-9174-615989fb9eb8", - "1ff48783-b2df-47d6-94c8-67e8b3ce3a3d", - "c23cd622-dd8c-4a62-9559-e6151e959fee", - "8ba98aaa-a327-4a2e-94d4-1332640b8aa2", - "24a90eaa-7acc-4974-b04a-ff3bcab4e31c", - "d124dbf8-3bde-44dc-8778-2e5aba1bd3cd", - "efe13be5-49ea-420b-84a8-ff21d38884e9", - "ac402663-45d5-4044-bbb7-4a6f7807c4f0", - "112bfcf0-f774-4b9c-a1ea-0f546f608347", - "9585ddf8-61e7-4c05-9032-b14e5ac9b9ad", - "a206f20b-f109-43ee-8ddf-8ff70ab653b5" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "1f339b11-ba95-4f1f-82bb-bfd6436f3aed" - ], - "x-ms-correlation-request-id": [ - "1f339b11-ba95-4f1f-82bb-bfd6436f3aed" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124242Z:1f339b11-ba95-4f1f-82bb-bfd6436f3aed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:42:42 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "575409" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test/providers/Microsoft.HDInsight/clusters/tacoxteam3abfsmsi\",\r\n \"name\": \"tacoxteam3abfsmsi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Central US\",\r\n \"etag\": \"965fc9e3-6513-406f-8b7e-68e7c47256eb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.1000.1.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-30T00:34:54.4\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToCopyBlobsToClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3abfsmsi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3abfsmsi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdiabfsrctest.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdircresources/providers/Microsoft.Storage/storageAccounts/hdiabfsrctest\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/tacoxteam3msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"tacoxteam3abfsmsi\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/test/providers/microsoft.managedidentity/userassignedidentities/tacoxteam3msi\": {\r\n \"principalId\": \"c099b803-077b-471a-bbae-a649499386e8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631\",\r\n \"name\": \"hdi-ps-test2631\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"73bbaaf5-af7a-4965-9e5c-dd4e91563950\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-09-02T12:21:26.517\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2631-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test2631.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test396/providers/Microsoft.HDInsight/clusters/hdi-ps-test3097\",\r\n \"name\": \"hdi-ps-test3097\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5d0ab07c-5707-43d1-9f9c-d13081e4fcbd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T12:11:49.94\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3097-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3097.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6879/providers/Microsoft.HDInsight/clusters/hdi-ps-test4437\",\r\n \"name\": \"hdi-ps-test4437\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"785922d3-dcba-48c4-a03c-d5ebe8d9333c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-19T11:24:49.243\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4437-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4437.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test2551/providers/Microsoft.HDInsight/clusters/hdi-ps-test4902\",\r\n \"name\": \"hdi-ps-test4902\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"743bc362-354c-4d56-9f8f-2a4330f37622\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-20T12:38:38.53\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4902-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4902.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6504/providers/Microsoft.HDInsight/clusters/hdi-ps-test58\",\r\n \"name\": \"hdi-ps-test58\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"75d4c678-cb2e-474a-9c27-aa6bd1e2934a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-20T12:32:08.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test58-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test58.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8833/providers/Microsoft.HDInsight/clusters/hdi-ps-test6942\",\r\n \"name\": \"hdi-ps-test6942\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"058878cc-a4b7-45d1-880e-d9539db312c9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-23T12:00:02.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6942-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6942.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5287/providers/Microsoft.HDInsight/clusters/hdi-ps-test9138\",\r\n \"name\": \"hdi-ps-test9138\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"81357f39-5444-4c9b-aca2-6ff813471dc5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-19T09:32:58.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9138-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9138.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin-azportalclusters/providers/Microsoft.HDInsight/clusters/sijin-playcluster\",\r\n \"name\": \"sijin-playcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5b40feaf-a6d5-4250-b864-b5bda426da8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-28T22:33:03.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-playcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-playcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijinplaystorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-playcluster-2019-08-28t22-31-30-511z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinliurgp/providers/Microsoft.HDInsight/clusters/xinliuhive2\",\r\n \"name\": \"xinliuhive2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"e3d68899-94fe-457e-b18a-17ad83b324b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:30:23.463\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhive2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhive2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinliuhive2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinliuhive2-2019-06-26t23-28-56-419z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinliurgp/providers/Microsoft.HDInsight/clusters/xinliuhiveperf\",\r\n \"name\": \"xinliuhiveperf\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b85e9d30-1424-4c34-b3e5-c1fcc2f28848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-28T17:37:32.827\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhiveperf-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhiveperf.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinliuhive2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinliuhiveperf-2019-08-28t17-25-33-425z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernamecanada\",\r\n \"name\": \"dstestsshusernamecanada\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"e2232877-72ed-4320-bd87-bd6828b8ffbb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T00:42:02.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecanada-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecanada.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dssshusernametest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusername-2019-08-07t00-37-56-517z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernamecaneast\",\r\n \"name\": \"dstestsshusernamecaneast\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"887d1f07-bd8a-43c2-90f6-5ac5d61af5be\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T02:02:17.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecaneast-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecaneast.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dssshusernametest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusercaneast-2019-08-07t01-59-33-318z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-uks-zk-1\",\r\n \"name\": \"srinikr-uks-zk-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk South\",\r\n \"etag\": \"f007fef4-427e-41e8-9500-0b93ef90ed2d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-02T19:02:15.32\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-uks-zk-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-uks-zk-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanrg/providers/Microsoft.HDInsight/clusters/ambarifailuretest\",\r\n \"name\": \"ambarifailuretest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"792b239c-dc4f-4e33-bd6e-c94d32cbc2a2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d5_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 50,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-30T17:06:26.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 432\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToScaleClusterErrorCode\",\r\n \"message\": \"Encountered failure(s) scaling cluster to 10 nodes. Scaling operation partially succeeded with a final node count of 50. Scaling error code: FailedToScaleClusterErrorCode.\"\r\n },\r\n {\r\n \"code\": \"FailedToScaleClusterErrorCode\",\r\n \"message\": \"Encountered failure(s) scaling cluster to 10 nodes. Scaling operation partially succeeded with a final node count of 50. Scaling error code: FailedToScaleClusterErrorCode.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ambarifailuretest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ambarifailuretest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ambarifailuretest-2019-08-30t17-04-40-489z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtest1\",\r\n \"name\": \"ammengtest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"92265e2e-4258-458f-b99f-105bcd094e3f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:50:35.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtest1-2019-08-14t23-46-59-824z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtest2\",\r\n \"name\": \"ammengtest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"60097014-29c3-4fff-98fc-259d4ec31678\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-15T18:21:44.243\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtest2-2019-08-15t18-17-44-415z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testsg/providers/Microsoft.HDInsight/clusters/clusterpwdresettest\",\r\n \"name\": \"clusterpwdresettest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"21dfd229-e256-4daf-a1a7-739d10ca7f23\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-26T19:00:38.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clusterpwdresettest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clusterpwdresettest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clusterpwdresettest-2019-08-26t18-56-07-173z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8416/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt2561\",\r\n \"name\": \"hdisdk-humboldt2561\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"e0ccb53e-d88f-414a-af44-714e9b3e4649\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 3\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"18:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"10:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"19:00\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-23T04:35:20.577\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt2561-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt2561.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage8235.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8096\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg2800/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt4456\",\r\n \"name\": \"hdisdk-humboldt4456\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"e3c42c01-bba4-47bb-adfa-9f1a53abb4c5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 3\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"18:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"10:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"19:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-22T08:07:17.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt4456-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt4456.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage1932.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default4494\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hegayamrg/providers/Microsoft.HDInsight/clusters/hetags\",\r\n \"name\": \"hetags\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9892b021-7a6d-41bd-8a9d-af2cb98125c3\",\r\n \"tags\": {\r\n \"Example\": \"Sample\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-17T18:15:47.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hetags-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hetags.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hetags-2019-06-17t18-14-20-888z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/t-shs/providers/Microsoft.HDInsight/clusters/shs-hadoop-001\",\r\n \"name\": \"shs-hadoop-001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8b4ba6e7-d031-4e2a-8b71-491ec7e73e54\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 8,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T11:41:32.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shs-hadoop-001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shs-hadoop-001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanrg/providers/Microsoft.HDInsight/clusters/testpolicyv\",\r\n \"name\": \"testpolicyv\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6a5a41-0f33-4040-ac72-d90cf324534e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-04T18:02:52.25\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testpolicyv-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testpolicyv.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testpolicyv-2019-06-04t17-58-50-263z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/t-shs/providers/Microsoft.HDInsight/clusters/your-hadoop-006\",\r\n \"name\": \"your-hadoop-006\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"393218a6-20c1-4456-9db4-7d9b03c34b7e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-16T03:13:00.803\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"your-hadoop-006-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"your-hadoop-006.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-rufan-rufantest123\",\r\n \"name\": \"spark23-hdi36-rufan-rufantest123\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"584f1a9d-343c-4355-95a1-d97625a5bed3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:42:17.257\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-rufan-rufantest123-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-rufan-rufantest123.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdub-cluster\",\r\n \"name\": \"cdub-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"8346192c-e882-40a5-9879-664e3816e11c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T20:31:39.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdub-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdub-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdub.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdub-cluster-2019-08-12t20-28-28-326z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernotallowed\",\r\n \"name\": \"dstestsshusernotallowed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"e5bf356e-8bf9-4ab8-8e7d-f8b44349fb68\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T01:03:09.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernotallowed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernotallowed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsshusereurope.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusernotallowed-2019-08-07t00-59-21-261z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshuserwesteur\",\r\n \"name\": \"dstestsshuserwesteur\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"3eafc6e4-f7a8-4b01-b0dd-f9bf662f3b1d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Wednesday\",\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T16:39:23.307\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshuserwesteur-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshuserwesteur.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaweutest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestwesteurope12-2019-08-07t16-36-22-222z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8898/providers/Microsoft.HDInsight/clusters/hdi-ps-test1812\",\r\n \"name\": \"hdi-ps-test1812\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"1ced92b0-7b84-4fe2-ae76-624d3605237c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T12:18:12.247\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1812-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1812.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3082/providers/Microsoft.HDInsight/clusters/hdi-ps-test6777\",\r\n \"name\": \"hdi-ps-test6777\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"c7c491a1-f854-4db4-948d-26c2f9d122d2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T11:35:16.577\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6777-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6777.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-iocache\",\r\n \"name\": \"nabikhch-iocache\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"e2afd07d-a9c2-4b4e-bf14-c9d14cc2b703\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T00:32:09.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-iocache-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-iocache.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhchncussa.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-iocache-2019-08-21t00-29-34-867z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/powershell-test-group/providers/Microsoft.HDInsight/clusters/operator-test-ps\",\r\n \"name\": \"operator-test-ps\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"9e65724f-dfcb-440f-bd38-7aa065620b6c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode2\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode3\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode4\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode5\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode6\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode7\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode8\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T11:26:04.95\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"operator-test-ps-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"operator-test-ps.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwastorage0118.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"operator-test-ps-2019-04-22t11-22-03-102z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.HDInsight/clusters/privateiptest\",\r\n \"name\": \"privateiptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"13b72057-6fae-4b10-a314-90b7a0b7d57d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-10-26T18:17:20.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/powershell-test-group/providers/Microsoft.HDInsight/clusters/reader-test-ps\",\r\n \"name\": \"reader-test-ps\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"85305bd9-66e3-45f2-8773-d294def0827c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode2\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode3\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode4\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T10:51:28.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 64\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reader-test-ps-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reader-test-ps.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwastorage0118.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reader-test-ps-2019-04-22t10-50-15-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/abdtest2\",\r\n \"name\": \"abdtest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"9e59a62c-a4a6-4583-b679-8e03520e5024\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-09-28T23:29:54.187\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abdtest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abdtest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abpaiCentralUSRG/providers/Microsoft.HDInsight/clusters/abpaiTip20170519\",\r\n \"name\": \"abpaiTip20170519\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"9f5d5197-3f23-44ef-915c-4232f819f042\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.5.1000.0.10078699.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.0\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T13:40:50.953\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abpaiTip20170519-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abpaiTip20170519.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/hdisecurehadoopabd\",\r\n \"name\": \"hdisecurehadoopabd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"70173edf-16a7-4da2-a005-ee01f7051ab0\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.10722531.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-18T01:23:07.427\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisecurehadoopabd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisecurehadoopabd.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mumou01/providers/Microsoft.HDInsight/clusters/mumouTiPTest01\",\r\n \"name\": \"mumouTiPTest01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"69fc3da4-a0b8-4e90-b7aa-c263fcb94924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-04T00:27:36.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mumou01/providers/Microsoft.HDInsight/clusters/mumouTiPTest02\",\r\n \"name\": \"mumouTiPTest02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"b88d2284-3303-4c47-b649-fff6743187ea\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-04T00:39:16.17\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/eastusheman/providers/Microsoft.HDInsight/clusters/adlsgen2test01\",\r\n \"name\": \"adlsgen2test01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5969ce2e-c554-4bc7-9c00-62e0f9a7c56d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-23T00:04:44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adlsgen2test01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adlsgen2test01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hemanthstgeastus.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanstgeastus/providers/Microsoft.Storage/storageAccounts/hemanthstgeastus\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hemanstgeastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hegayammsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"adlsgen2test01-2019-07-23t00-04-12-800z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hemanstgeastus/providers/microsoft.managedidentity/userassignedidentities/hegayammsi\": {\r\n \"principalId\": \"50774933-7f7f-4a04-9c4f-7c659499baa2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsfsspark111402\",\r\n \"name\": \"dsfsspark111402\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"18538911-1f03-4524-b99d-5575d7760395\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Updating\",\r\n \"createdDate\": \"2018-11-15T06:49:58.253\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsfsspark111402-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsfsspark111402.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dshadooptest\",\r\n \"name\": \"dshadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b37cf975-35c6-4c02-b1ab-5ab3b8ab87d6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-20T20:37:03.143\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsfscreate111505.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dshadooptest-2019-05-20t20-36-05-942z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dskafkagen2\",\r\n \"name\": \"dskafkagen2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ec811f4c-cc35-4017-8aa1-91c42c155ed5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-23T16:55:50.19\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dskafkagen2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dskafkagen2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.Storage/storageAccounts/dstestgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/01hditestdonotdelete/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen2\",\r\n \"key\": null,\r\n \"fileSystem\": \"dskafkagen2-2019-06-23t16-55-03-664z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/01hditestdonotdelete/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen2\": {\r\n \"principalId\": \"93b5cdd6-ef2e-47c6-ba81-fd9c1b43795f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dssparkfstest111501\",\r\n \"name\": \"dssparkfstest111501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c918d8d6-c649-4b75-ac4d-aa65d234db2a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-11-15T08:10:16.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dssparkfstest111501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dssparkfstest111501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusoeastusrg/providers/Microsoft.HDInsight/clusters/mariuso-pv1\",\r\n \"name\": \"mariuso-pv1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"217bbe42-284e-4f1a-bc18-240052a0ab58\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-30T20:30:37.553\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariuso-pv1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariuso-pv1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mariusoeastus04.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mariuso-pv1-2019-07-30t20-29-06-706z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abhisigrg/providers/Microsoft.HDInsight/clusters/mktessbillingbase\",\r\n \"name\": \"mktessbillingbase\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"572af3b4-60df-436c-b23d-f8f1d2c1d17c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-01T18:39:22.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktessBillingbase-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktessBillingbase.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestasldkgndsfgadsfg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktessbillingbase-2019-07-01t18-37-31-401z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.HDInsight/clusters/reddytest-para-vnet\",\r\n \"name\": \"reddytest-para-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"18be41b7-2a0d-41e9-b92c-e2e0191876ae\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902030413.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2019-02-12T23:17:13.82\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.HDInsight/clusters/reddy-vnettest-para\",\r\n \"name\": \"reddy-vnettest-para\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"96092175-6347-4ecb-9640-4eb1abda9155\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902030413.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2019-02-13T00:06:30.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.HDInsight/clusters/sparkrolloutesteaus\",\r\n \"name\": \"sparkrolloutesteaus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7257e704-ee56-455a-8819-ffd8a947f0e7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-03-28T08:22:23.853\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaogao-test2\",\r\n \"name\": \"xiaogao-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1120f01d-77ab-4ad7-a028-52a5ffcb6043\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T12:44:27.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogaotesthdi1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaogao-test2-2019-06-21t12-41-29-519z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadywtraining/providers/Microsoft.HDInsight/clusters/fadywportalapplication\",\r\n \"name\": \"fadywportalapplication\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f54c73a-4f12-4f4e-90f2-8b2c3529d4a4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-17T18:31:13.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywportalapplication-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywportalapplication.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadyw.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadywportalapplication-2019-06-17t18-29-47-289z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/mktestmlfull\",\r\n \"name\": \"mktestmlfull\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"07426f41-6ada-44b6-acef-9df0bb3f2103\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/mlservices-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"MLSERVICES\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-13T00:50:38.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 64\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"EDGESSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull-ed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"961796westus.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestmlfull-2019-06-13t00-46-41-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestmljune14\",\r\n \"name\": \"mktestmljune14\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"1b3590e0-554a-4fa3-bc2c-8e8d8e90d5a9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/mlservices-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"MLSERVICES\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-14T19:24:44.193\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"EDGESSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14-ed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"duschtest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestmljune14-2019-06-14t19-23-28-307z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sparkvmss/providers/Microsoft.HDInsight/clusters/sparkvmss\",\r\n \"name\": \"sparkvmss\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"74f80c2a-b55f-42fb-85a3-dc85fe848e38\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.65\",\r\n \"clusterHdpVersion\": \"2.6.5.10-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.65.1808011849.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-15T22:53:59.557\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkvmss-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkvmss.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/tacoxcanaryrg/providers/Microsoft.HDInsight/clusters/tacoxteam3westuscheckspark\",\r\n \"name\": \"tacoxteam3westuscheckspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c9bf2b21-d6fc-4054-a53f-fa1947f40889\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T17:13:44.273\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3westuscheckspark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3westuscheckspark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"tacoxsandboxstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"tacoxteam3westuscheckspark\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-demo1\",\r\n \"name\": \"srinikr-demo1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"f9591dff-348f-4959-861f-4a4ba7302c93\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3007-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902081838.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-19T01:16:52.87\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-demo1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-demo1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-frce-sp22-0704\",\r\n \"name\": \"srinikr-frce-sp22-0704\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"France Central\",\r\n \"etag\": \"c2be9250-ca57-47c4-af01-cd92d3b9f54d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1906261920.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-04T17:28:08.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-frce-sp22-0704-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-frce-sp22-0704.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinikrfrce0704.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinikr-frce-sp22-0704-2019-07-04t17-25-19-265z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dshive52901\",\r\n \"name\": \"dshive52901\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"9dd389dd-42fa-4a68-b50c-cc60bac3167b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-29T23:21:35.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshive52901-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshive52901.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestautoscale52901.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dshive52901-2019-05-29t23-20-45-308z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dstestautoscale1204\",\r\n \"name\": \"dstestautoscale1204\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"000fbd95-d454-4671-aea5-6c31aa95c76f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-23\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1812021626.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-12-04T20:51:38.46\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale1204-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale1204.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscale52901\",\r\n \"name\": \"dstestautoscale52901\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"036861ce-7610-4432-b81d-293133d3987f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-29T23:04:49.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale52901-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale52901.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestautoscale52901.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscale52901-2019-05-29t23-03-54-481z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jiyingcanarytest/providers/Microsoft.HDInsight/clusters/jiyinglipubcanary1\",\r\n \"name\": \"jiyinglipubcanary1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"915b5eb2-ec7e-4041-9a8a-cc8f38e152ff\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1905062133.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T00:38:23.843\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jiyinglipubcanary1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jiyinglipubcanary1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"tacoxcanarywasb.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jiyinglipubcanary1-2019-08-21t00-28-07-133z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mogorantEUS-rg/providers/Microsoft.HDInsight/clusters/mogoranteuscluster\",\r\n \"name\": \"mogoranteuscluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"874de4f9-1863-40d8-be05-6e7c2cc57af3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-06T00:50:29.543\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mogorantEUSCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mogorantEUSCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mogoranteusstorage.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mogorantEUS-rg/providers/Microsoft.Storage/storageAccounts/mogoranteusstorage\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mogorantEUS-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mogorantUAEUS\",\r\n \"key\": null,\r\n \"fileSystem\": \"mogoranteuscluster-2019-07-06t00-44-58-791z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mogoranteus-rg/providers/microsoft.managedidentity/userassignedidentities/mogorantuaeus\": {\r\n \"principalId\": \"adf54af6-a3bc-4b1e-b08e-c6c46705ad85\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/tacoxcanaryrg/providers/Microsoft.HDInsight/clusters/tacoxcanarynoshsha1\",\r\n \"name\": \"tacoxcanarynoshsha1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"9dee88fc-ef3a-4e89-97d0-04145fdcf9d3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.1908082122.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T19:03:31.637\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxcanarynoshsha1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxcanarynoshsha1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nkhteam3abfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nkhteam3rg/providers/Microsoft.Storage/storageAccounts/nkhteam3abfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/nkhteam3rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/nkhmanagedidentity\",\r\n \"key\": null,\r\n \"fileSystem\": \"tacoxcanarynoshsha1\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/nkhteam3rg/providers/microsoft.managedidentity/userassignedidentities/nkhmanagedidentity\": {\r\n \"principalId\": \"8ba65834-3a54-47d4-97e5-963837484473\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test4935/providers/Microsoft.HDInsight/clusters/hdi-ps-test2631?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MjYzMT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5df0c844-5a85-4bd0-9d02-4e00d947f201" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US%202/operationresults/a7120b22-4abe-427a-aebf-907b12d505e0-0?api-version=2018-06-01-preview" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West US 2/azureasyncoperations/a7120b22-4abe-427a-aebf-907b12d505e0-0?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "4f91b2cb-efc5-401e-b0b7-a0ddba70a8a6" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "91236a14-1a04-4ec3-979c-5fc76cd41a23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124245Z:91236a14-1a04-4ec3-979c-5fc76cd41a23" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:42:45 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US%202/azureasyncoperations/a7120b22-4abe-427a-aebf-907b12d505e0-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMlMjAyL2F6dXJlYXN5bmNvcGVyYXRpb25zL2E3MTIwYjIyLTRhYmUtNDI3YS1hZWJmLTkwN2IxMmQ1MDVlMC0wP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "16c2c7ca-4687-4fb9-9df1-4bd351d7cf15" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "384b3c63-a34a-4578-b492-a185cdef6a85" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124346Z:384b3c63-a34a-4578-b492-a185cdef6a85" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:43:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US%202/azureasyncoperations/a7120b22-4abe-427a-aebf-907b12d505e0-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMlMjAyL2F6dXJlYXN5bmNvcGVyYXRpb25zL2E3MTIwYjIyLTRhYmUtNDI3YS1hZWJmLTkwN2IxMmQ1MDVlMC0wP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "87dbec17-62b9-4dac-9aae-d17cf89bfe35" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "f1a13830-4b4c-4914-9180-b393af800ad5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124447Z:f1a13830-4b4c-4914-9180-b393af800ad5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:44:46 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US%202/operationresults/a7120b22-4abe-427a-aebf-907b12d505e0-0?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMlMjAyL29wZXJhdGlvbnJlc3VsdHMvYTcxMjBiMjItNGFiZS00MjdhLWFlYmYtOTA3YjEyZDUwNWUwLTA/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dd32971c-da88-49ec-8bd0-0edac427b720" - ], - "x-ms-hdi-served-by": [ - "westus2" - ], - "x-ms-correlation-request-id": [ - "f35d2953-6368-437d-979c-e89ae533c3ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124447Z:f35d2953-6368-437d-979c-e89ae533c3ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:44:46 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test4935?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q0OTM1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "147a8a6b-dcec-41c3-84d7-48769a4da1d8" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "ca52d4e0-d2a0-441e-a3c0-c4755223804c" - ], - "x-ms-correlation-request-id": [ - "ca52d4e0-d2a0-441e-a3c0-c4755223804c" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124452Z:ca52d4e0-d2a0-441e-a3c0-c4755223804c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:44:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFE1TXpVdFYwVlRWRlZUTWlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpNaUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "ffc88dae-974f-45fd-924a-4e82ad0536f8" - ], - "x-ms-correlation-request-id": [ - "ffc88dae-974f-45fd-924a-4e82ad0536f8" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124508Z:ffc88dae-974f-45fd-924a-4e82ad0536f8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:45:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFE1TXpVdFYwVlRWRlZUTWlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpNaUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "26e97cdc-79db-425f-9f53-b517e9aecc79" - ], - "x-ms-correlation-request-id": [ - "26e97cdc-79db-425f-9f53-b517e9aecc79" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124523Z:26e97cdc-79db-425f-9f53-b517e9aecc79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:45:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFE1TXpVdFYwVlRWRlZUTWlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpNaUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "cbc6cfc3-cd81-4d47-989e-dcb552ec8c8b" - ], - "x-ms-correlation-request-id": [ - "cbc6cfc3-cd81-4d47-989e-dcb552ec8c8b" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124538Z:cbc6cfc3-cd81-4d47-989e-dcb552ec8c8b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:45:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFE1TXpVdFYwVlRWRlZUTWlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpNaUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "c53c8e95-6a58-4247-8c54-eeff15fc2acf" - ], - "x-ms-correlation-request-id": [ - "c53c8e95-6a58-4247-8c54-eeff15fc2acf" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124553Z:c53c8e95-6a58-4247-8c54-eeff15fc2acf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:45:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFE1TXpVdFYwVlRWRlZUTWlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpNaUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "51fb380f-09a9-4d68-99a1-1246b2ae4501" - ], - "x-ms-correlation-request-id": [ - "51fb380f-09a9-4d68-99a1-1246b2ae4501" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124609Z:51fb380f-09a9-4d68-99a1-1246b2ae4501" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:46:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFE1TXpVdFYwVlRWRlZUTWlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpNaUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "dfe9dafd-89bf-4b9b-9612-8ead52c93ae3" - ], - "x-ms-correlation-request-id": [ - "dfe9dafd-89bf-4b9b-9612-8ead52c93ae3" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124624Z:dfe9dafd-89bf-4b9b-9612-8ead52c93ae3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:46:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDQ5MzUtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFE1TXpVdFYwVlRWRlZUTWlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpNaUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "19589d0d-4582-4f53-80c1-5c7d1d0c9c93" - ], - "x-ms-correlation-request-id": [ - "19589d0d-4582-4f53-80c1-5c7d1d0c9c93" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124624Z:19589d0d-4582-4f53-80c1-5c7d1d0c9c93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:46:24 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"primarySharedKey\": \"azbWSYSLAww50Tjgg4U7x4kKgnGLoMiWgx7Cw8Gn7m4tAdijbITpZQ9NUsdROPyQDss3brcHV6Wlc8EShc8gOA==\",\r\n \"secondarySharedKey\": \"trOCgxwRH3tbO1oBZXJwc3Ld5lnF3929lHaFW72DCfgr1Mq0QUCF3qseK0o5T2mJIp/1/OIf4uHnB7Xtt2xgiQ==\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-MonitoringRelatedCommands": [ - "hdi-ps-test2631", - "group-ps-test4935", - "storagepstest6076", - "workspace-ps-test5157" + "hdi-ps-test1578", + "group-ps-test5231", + "storagepstest1738", + "workspace-ps-test4253" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightScriptActionTests/TestScriptActionRelatedCommands.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightScriptActionTests/TestScriptActionRelatedCommands.json index 032c156f9c6a..3b5b0c79982e 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightScriptActionTests/TestScriptActionRelatedCommands.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightScriptActionTests/TestScriptActionRelatedCommands.json @@ -1,30 +1,30 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test5441?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test715?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q3MTU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "df59ff21-c314-400a-aab8-1b6d4f887df2" + "a460d949-d6ef-4846-a3cb-3cdbaba4bd00" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "32" ] }, + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "37eadc98-221a-4815-9502-9df57304abf4" + "dd09fbcc-8a6d-48f1-b794-7a1fce84baba" ], "x-ms-correlation-request-id": [ - "37eadc98-221a-4815-9502-9df57304abf4" + "dd09fbcc-8a6d-48f1-b794-7a1fce84baba" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124634Z:37eadc98-221a-4815-9502-9df57304abf4" + "KOREASOUTH:20230724T062543Z:dd09fbcc-8a6d-48f1-b794-7a1fce84baba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:46:34 GMT" + "Mon, 24 Jul 2023 06:25:42 GMT" ], "Content-Length": [ - "187" + "188" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,34 +63,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441\",\r\n \"name\": \"group-ps-test5441\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test715\",\r\n \"name\": \"group-ps-test715\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.Storage/storageAccounts/storagepstest5155?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDUxNTU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test715/providers/Microsoft.Storage/storageAccounts/storagepstest6789?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlcHN0ZXN0Njc4OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fdf305d9-55fd-4392-a9bb-1ec3a80a822d" + "996a46b7-7f6b-464f-aa0a-88c15cc52a66" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "104" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/westus/asyncoperations/3a4d44c4-e715-4a34-8fb7-e6d65fb7f6d4?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/0bdfd866-638a-433c-a1e7-f5559968aa45?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "3a4d44c4-e715-4a34-8fb7-e6d65fb7f6d4" + "0bdfd866-638a-433c-a1e7-f5559968aa45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,19 +114,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "fbb82c11-2d0a-4bfa-ab26-750d343b3552" + "57899191-336a-4195-9924-5b9693179c28" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124637Z:fbb82c11-2d0a-4bfa-ab26-750d343b3552" + "KOREASOUTH:20230724T062548Z:57899191-336a-4195-9924-5b9693179c28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:46:36 GMT" + "Mon, 24 Jul 2023 06:25:48 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -142,18 +142,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/westus/asyncoperations/3a4d44c4-e715-4a34-8fb7-e6d65fb7f6d4?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8zYTRkNDRjNC1lNzE1LTRhMzQtOGZiNy1lNmQ2NWZiN2Y2ZDQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/0bdfd866-638a-433c-a1e7-f5559968aa45?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8wYmRmZDg2Ni02MzhhLTQzM2MtYTFlNy1mNTU1OTk2OGFhNDU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -161,8 +161,14 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/0bdfd866-638a-433c-a1e7-f5559968aa45?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" + ], "x-ms-request-id": [ - "f1a3a1e9-eebe-4839-9124-e5375ed10678" + "bf7b2c35-e92b-447c-810c-edb736d4148b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,49 +180,43 @@ "11999" ], "x-ms-correlation-request-id": [ - "e3512568-7f7e-4c4d-809b-8a9faf9daa9b" + "90bac386-aeae-4232-a7b6-d827ae2117d3" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124655Z:e3512568-7f7e-4c4d-809b-8a9faf9daa9b" + "KOREASOUTH:20230724T062606Z:90bac386-aeae-4232-a7b6-d827ae2117d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:46:54 GMT" - ], - "Content-Length": [ - "1363" + "Mon, 24 Jul 2023 06:26:05 GMT" ], "Content-Type": [ - "application/json" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.Storage/storageAccounts/storagepstest5155\",\r\n \"name\": \"storagepstest5155\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-02T12:46:37.0684161Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-09-02T12:46:37.0684161Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-09-02T12:46:36.9903976Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5155.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5155.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5155.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest5155.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest5155-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest5155-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest5155-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.Storage/storageAccounts/storagepstest5155/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDUxNTUvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/0bdfd866-638a-433c-a1e7-f5559968aa45?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy8wYmRmZDg2Ni02MzhhLTQzM2MtYTFlNy1mNTU1OTk2OGFhNDU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "b9a6fa3b-0cd7-4275-9a7d-6b32b32af4e7" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.2" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -225,7 +225,7 @@ "no-cache" ], "x-ms-request-id": [ - "d432bf1b-120f-47f4-b172-c25dfb1696f7" + "df8ba4f9-ee3f-4397-a90b-52c21b05e097" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -233,23 +233,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "4652d50b-e5ee-410e-8dd3-4f4626030b0b" + "fdbfd399-2950-4ea2-86d5-6d35969aa659" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124655Z:4652d50b-e5ee-410e-8dd3-4f4626030b0b" + "KOREASOUTH:20230724T062609Z:fdbfd399-2950-4ea2-86d5-6d35969aa659" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:46:55 GMT" + "Mon, 24 Jul 2023 06:26:08 GMT" ], "Content-Length": [ - "288" + "1392" ], "Content-Type": [ "application/json" @@ -258,232 +258,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"3eZ7RgqZHq56mBBt3/fCSrY2otxQkQKE4vkyXDfrw3DzXsLMwy8VRAcJ56/iV/XT3BIM2QrSoO71hFiylZVkpg==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"RBfaqzeiXEoShbGkH8+lcQFkIu7XttU8mbBC69xsc5VRh/DgOZhtYm6HCQW/tnvEDUeKM5gIPP3DTvK4+f79Wg==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test715/providers/Microsoft.Storage/storageAccounts/storagepstest6789\",\r\n \"name\": \"storagepstest6789\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T06:25:44.3568174Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T06:25:44.3568174Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-24T06:25:44.2474639Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest6789.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest6789.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest6789.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest6789.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest6789-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest6789-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest6789-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"core-site\": {\r\n \"fs.defaultFS\": \"wasb://hdi-ps-test5138@storagepstest5155.blob.core.windows.net\",\r\n \"fs.azure.account.key.storagepstest5155.blob.core.windows.net\": \"3eZ7RgqZHq56mBBt3/fCSrY2otxQkQKE4vkyXDfrw3DzXsLMwy8VRAcJ56/iV/XT3BIM2QrSoO71hFiylZVkpg==\"\r\n },\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\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_D12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test715/providers/Microsoft.Storage/storageAccounts/storagepstest6789/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q3MTUvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zdG9yYWdlcHN0ZXN0Njc4OS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "975052f9-6ac4-4b34-8300-34a317a744d6" + "dcd4100b-d612-4749-bb3b-6196591090f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1889" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"bacbd343-b7ae-40ca-bb91-612f01026a41\"" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138?api-version=2018-06-01-preview" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "0f64cb66-f268-4ca3-b5e7-d50c3ed4754a" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "c870e3aa-739b-4415-b40b-e38f4534fcb1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124704Z:c870e3aa-739b-4415-b40b-e38f4534fcb1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:47:03 GMT" - ], - "Content-Length": [ - "1255" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138\",\r\n \"name\": \"hdi-ps-test5138\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bacbd343-b7ae-40ca-bb91-612f01026a41\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2019-09-02T12:47:03.23\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"tier\": \"standard\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "154178b0-c5e9-4073-8b86-fc496c10c122" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "1bf03ce3-543f-4857-8366-6027df8ee937" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124734Z:1bf03ce3-543f-4857-8366-6027df8ee937" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:47:33 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", + "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "b25b503c-9e68-41b0-b1db-f7f0ec996474" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "3a00d835-94b2-4c42-9648-c697eb4765ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124805Z:3a00d835-94b2-4c42-9648-c697eb4765ed" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:48:04 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -491,3270 +287,50 @@ "Pragma": [ "no-cache" ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], "x-ms-request-id": [ - "1dabfd77-ca65-4768-98af-505bb0545d5b" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "bba9b662-b842-4356-b74a-ec612151b617" + "588787d0-e023-4433-ab9a-704203b110cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124836Z:bba9b662-b842-4356-b74a-ec612151b617" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:48:36 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "61e977d7-4b59-422c-be60-ff41ae70bc16" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-hdi-served-by": [ - "westus" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" ], "x-ms-correlation-request-id": [ - "ab67a7ca-2db0-4916-85b9-3f6c43d71e9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "0f38b1b0-fa22-49b2-bccc-8cc4615fc773" ], "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124907Z:ab67a7ca-2db0-4916-85b9-3f6c43d71e9f" + "KOREASOUTH:20230724T062609Z:0f38b1b0-fa22-49b2-bccc-8cc4615fc773" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 02 Sep 2019 12:49:07 GMT" + "Mon, 24 Jul 2023 06:26:08 GMT" ], "Content-Length": [ - "23" + "288" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "2549dbc3-65da-4e28-93e7-bd803e371585" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "ce86d8e4-02ac-451b-9cee-850a5bd309fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T124937Z:ce86d8e4-02ac-451b-9cee-850a5bd309fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:49:37 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "588aaff4-667e-41f8-917d-4d3e6b2ef095" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "6b7956ec-9670-462c-a238-45edc4c396e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125009Z:6b7956ec-9670-462c-a238-45edc4c396e9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:50:08 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "6fbd2ef1-641f-4230-b6d1-e713aa52f921" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "b8b2f99b-92e9-48da-bad4-f06439615243" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125039Z:b8b2f99b-92e9-48da-bad4-f06439615243" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:50:39 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "41a66e22-206e-4a7c-8be2-83f1766dba6d" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "da0eba3b-c8e5-4fd7-b2d8-bcae49ee7e30" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125110Z:da0eba3b-c8e5-4fd7-b2d8-bcae49ee7e30" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:51:09 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "15ffd3c4-6411-404d-869b-150a626c59e2" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "02b88c67-817d-4885-89a3-338e96e87bd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125141Z:02b88c67-817d-4885-89a3-338e96e87bd1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:51:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "5adcfd6e-256a-40b9-9bd0-8f3bc4cf2517" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "d5c0052b-3d92-4f9a-9acf-dc2e2837f330" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125211Z:d5c0052b-3d92-4f9a-9acf-dc2e2837f330" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:52:11 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "9484f8d1-25dc-4fce-9325-c42fdc1cbd73" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "b7a8a67e-4dc4-4697-8a24-38b8f2c20541" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125242Z:b7a8a67e-4dc4-4697-8a24-38b8f2c20541" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:52:41 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "e8372916-6359-4404-b9d8-04749bb1d5eb" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "e6b58512-1e8f-4fc8-a25b-afd73fb0e11c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125314Z:e6b58512-1e8f-4fc8-a25b-afd73fb0e11c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:53:13 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "9a0f62f7-4fc8-4d1d-99c4-d59a88358116" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "87fa35d2-fcae-4b95-a747-fa1093725f96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125345Z:87fa35d2-fcae-4b95-a747-fa1093725f96" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:53:44 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "25f2eb21-b592-4551-ad44-9ddf03272848" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "412cfa57-1cc1-4399-aa5b-a9dc84b8edf2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125415Z:412cfa57-1cc1-4399-aa5b-a9dc84b8edf2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:54:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "339a5033-41a5-42e3-8ac7-7d3a03123458" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "abf959bd-00af-4b4a-9640-aa98604e6a14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125446Z:abf959bd-00af-4b4a-9640-aa98604e6a14" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:54:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "0447eb7f-8331-482c-b1ab-72685bf4589e" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "7851311e-8d5a-4153-b546-ed616162a1c1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125517Z:7851311e-8d5a-4153-b546-ed616162a1c1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:55:16 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "07f94764-4e64-4738-9631-7f0051ee4e7a" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "70906c37-659e-41c6-92bc-53047a0d0c14" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125547Z:70906c37-659e-41c6-92bc-53047a0d0c14" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:55:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "9a114347-f7b0-4e47-8e62-15f8b03ea86d" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "ce66589a-8ee8-4432-8ffb-375165d85539" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125618Z:ce66589a-8ee8-4432-8ffb-375165d85539" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:56:18 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "a017c6d3-8536-4d67-b1c1-bdc3ca53510d" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "d3b2af68-80ee-4bcb-a365-9d5b90b301d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125649Z:d3b2af68-80ee-4bcb-a365-9d5b90b301d1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:56:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "bbc7d910-4c4e-4848-b0a2-877d476d1746" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "32a230db-73da-44eb-986c-19405beec5a8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125720Z:32a230db-73da-44eb-986c-19405beec5a8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:57:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "3c936810-cde9-456f-829a-554230d07199" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "9561338e-1284-4492-8a8a-5eb82e984a6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125751Z:9561338e-1284-4492-8a8a-5eb82e984a6c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:57:50 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "a0e23f82-a81a-4804-92ce-ab52b18cabcf" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "874986ec-fcd5-4adf-adce-ca60580c4db5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125822Z:874986ec-fcd5-4adf-adce-ca60580c4db5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:58:21 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "c247a493-6913-46ae-8109-a4226021d4b8" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "362b3a8b-4052-48b2-96d6-905c612ab246" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125852Z:362b3a8b-4052-48b2-96d6-905c612ab246" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:58:52 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "f0dc02b9-5c0b-458d-aecc-2a5307a85066" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "cf108e44-02ec-4801-89b7-fddde5a7834e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125923Z:cf108e44-02ec-4801-89b7-fddde5a7834e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:59:22 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "9b5d2db6-4a71-4e76-b7e8-796b8d357240" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "0138219f-e66a-4dd5-aeb0-dc58b7dd5ed5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T125954Z:0138219f-e66a-4dd5-aeb0-dc58b7dd5ed5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 12:59:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "66b0c267-5e5a-4c35-a510-db006c92d7c3" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "ee97d003-44c9-4148-9aa1-1f5e166522d2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130025Z:ee97d003-44c9-4148-9aa1-1f5e166522d2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:00:24 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "e86e752d-e195-430c-aae9-b2ea9d054ee7" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "a50f995a-1da0-49ba-b325-c437bcad7301" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130055Z:a50f995a-1da0-49ba-b325-c437bcad7301" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:00:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/create?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "83b63e50-377b-4fb0-8ee7-737b1495864b" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "feb80817-6dfa-4b35-8138-7bdf886ac511" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130126Z:feb80817-6dfa-4b35-8138-7bdf886ac511" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:01:25 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "01dc168a-6973-4a4d-8421-e82e3d88d49a" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "87a62db1-de2d-47a2-9e88-f3a994ee722c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130127Z:87a62db1-de2d-47a2-9e88-f3a994ee722c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:01:26 GMT" - ], - "Content-Length": [ - "1479" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138\",\r\n \"name\": \"hdi-ps-test5138\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bacbd343-b7ae-40ca-bb91-612f01026a41\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-09-02T12:47:03.23\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5138-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5138.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d2efd9fc-6209-4ac4-b593-516b89e1c657" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "ee3bd41d-84b9-4e7d-af1b-096f05990be3", - "245c60b7-2306-4112-9301-b106c42c4a83", - "e596b18f-4791-4507-9b94-986fc0374e04", - "3b1c4138-c091-4509-bcdc-fb5a099fd20c", - "3bc13fcd-1ed1-45dc-92d9-2ce8a4085153", - "5c2553f9-61d9-4e37-bec2-0be7063885af", - "d102397b-967a-4c79-b192-501941ba42ce", - "6a002fa3-a338-4a83-8d1c-0877fa667726", - "17e4ae58-1c3b-437d-9edb-22024d755358", - "28773ce0-7700-4a2c-9c50-42fc094b43bf", - "49c1701f-67c7-4aef-865d-18768b92adb2", - "ed5a7c7e-279b-4191-bc18-bf36e9ea0879", - "def2393f-2548-4d81-a29f-35ad5b7e1614", - "5b856b02-fd27-443f-bc5c-12e45a3f45b5", - "b17672b4-25fb-431c-97a5-335f1d9e5364" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-request-id": [ - "9231938e-dd0e-43aa-88b7-7fccf71fe7d9" - ], - "x-ms-correlation-request-id": [ - "9231938e-dd0e-43aa-88b7-7fccf71fe7d9" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130132Z:9231938e-dd0e-43aa-88b7-7fccf71fe7d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:01:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "575400" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test/providers/Microsoft.HDInsight/clusters/tacoxteam3abfsmsi\",\r\n \"name\": \"tacoxteam3abfsmsi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Central US\",\r\n \"etag\": \"965fc9e3-6513-406f-8b7e-68e7c47256eb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.1000.1.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-30T00:34:54.4\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToCopyBlobsToClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3abfsmsi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3abfsmsi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdiabfsrctest.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdircresources/providers/Microsoft.Storage/storageAccounts/hdiabfsrctest\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/tacoxteam3msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"tacoxteam3abfsmsi\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/test/providers/microsoft.managedidentity/userassignedidentities/tacoxteam3msi\": {\r\n \"principalId\": \"c099b803-077b-471a-bbae-a649499386e8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test396/providers/Microsoft.HDInsight/clusters/hdi-ps-test3097\",\r\n \"name\": \"hdi-ps-test3097\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5d0ab07c-5707-43d1-9f9c-d13081e4fcbd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T12:11:49.94\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3097-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3097.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6879/providers/Microsoft.HDInsight/clusters/hdi-ps-test4437\",\r\n \"name\": \"hdi-ps-test4437\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"785922d3-dcba-48c4-a03c-d5ebe8d9333c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-19T11:24:49.243\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4437-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4437.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test2551/providers/Microsoft.HDInsight/clusters/hdi-ps-test4902\",\r\n \"name\": \"hdi-ps-test4902\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"743bc362-354c-4d56-9f8f-2a4330f37622\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-20T12:38:38.53\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4902-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4902.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6504/providers/Microsoft.HDInsight/clusters/hdi-ps-test58\",\r\n \"name\": \"hdi-ps-test58\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"75d4c678-cb2e-474a-9c27-aa6bd1e2934a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-20T12:32:08.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test58-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test58.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8833/providers/Microsoft.HDInsight/clusters/hdi-ps-test6942\",\r\n \"name\": \"hdi-ps-test6942\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"058878cc-a4b7-45d1-880e-d9539db312c9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-23T12:00:02.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6942-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6942.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5287/providers/Microsoft.HDInsight/clusters/hdi-ps-test9138\",\r\n \"name\": \"hdi-ps-test9138\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"81357f39-5444-4c9b-aca2-6ff813471dc5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-19T09:32:58.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9138-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9138.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin-azportalclusters/providers/Microsoft.HDInsight/clusters/sijin-playcluster\",\r\n \"name\": \"sijin-playcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5b40feaf-a6d5-4250-b864-b5bda426da8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-28T22:33:03.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-playcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-playcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijinplaystorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-playcluster-2019-08-28t22-31-30-511z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinliurgp/providers/Microsoft.HDInsight/clusters/xinliuhive2\",\r\n \"name\": \"xinliuhive2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"e3d68899-94fe-457e-b18a-17ad83b324b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:30:23.463\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhive2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhive2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinliuhive2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinliuhive2-2019-06-26t23-28-56-419z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinliurgp/providers/Microsoft.HDInsight/clusters/xinliuhiveperf\",\r\n \"name\": \"xinliuhiveperf\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b85e9d30-1424-4c34-b3e5-c1fcc2f28848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-28T17:37:32.827\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhiveperf-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhiveperf.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinliuhive2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinliuhiveperf-2019-08-28t17-25-33-425z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernamecanada\",\r\n \"name\": \"dstestsshusernamecanada\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"e2232877-72ed-4320-bd87-bd6828b8ffbb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T00:42:02.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecanada-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecanada.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dssshusernametest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusername-2019-08-07t00-37-56-517z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernamecaneast\",\r\n \"name\": \"dstestsshusernamecaneast\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"887d1f07-bd8a-43c2-90f6-5ac5d61af5be\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T02:02:17.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecaneast-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecaneast.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dssshusernametest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusercaneast-2019-08-07t01-59-33-318z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-uks-zk-1\",\r\n \"name\": \"srinikr-uks-zk-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk South\",\r\n \"etag\": \"f007fef4-427e-41e8-9500-0b93ef90ed2d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-02T19:02:15.32\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-uks-zk-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-uks-zk-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanrg/providers/Microsoft.HDInsight/clusters/ambarifailuretest\",\r\n \"name\": \"ambarifailuretest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"792b239c-dc4f-4e33-bd6e-c94d32cbc2a2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d5_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 50,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-30T17:06:26.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 432\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToScaleClusterErrorCode\",\r\n \"message\": \"Encountered failure(s) scaling cluster to 10 nodes. Scaling operation partially succeeded with a final node count of 50. Scaling error code: FailedToScaleClusterErrorCode.\"\r\n },\r\n {\r\n \"code\": \"FailedToScaleClusterErrorCode\",\r\n \"message\": \"Encountered failure(s) scaling cluster to 10 nodes. Scaling operation partially succeeded with a final node count of 50. Scaling error code: FailedToScaleClusterErrorCode.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ambarifailuretest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ambarifailuretest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ambarifailuretest-2019-08-30t17-04-40-489z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtest1\",\r\n \"name\": \"ammengtest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"92265e2e-4258-458f-b99f-105bcd094e3f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:50:35.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtest1-2019-08-14t23-46-59-824z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtest2\",\r\n \"name\": \"ammengtest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"60097014-29c3-4fff-98fc-259d4ec31678\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-15T18:21:44.243\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtest2-2019-08-15t18-17-44-415z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testsg/providers/Microsoft.HDInsight/clusters/clusterpwdresettest\",\r\n \"name\": \"clusterpwdresettest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"21dfd229-e256-4daf-a1a7-739d10ca7f23\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-26T19:00:38.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clusterpwdresettest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clusterpwdresettest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clusterpwdresettest-2019-08-26t18-56-07-173z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8416/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt2561\",\r\n \"name\": \"hdisdk-humboldt2561\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"e0ccb53e-d88f-414a-af44-714e9b3e4649\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 3\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"18:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"10:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"19:00\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-23T04:35:20.577\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt2561-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt2561.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage8235.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8096\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg2800/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt4456\",\r\n \"name\": \"hdisdk-humboldt4456\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"e3c42c01-bba4-47bb-adfa-9f1a53abb4c5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 3\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"18:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"10:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"19:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-22T08:07:17.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt4456-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt4456.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage1932.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default4494\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hegayamrg/providers/Microsoft.HDInsight/clusters/hetags\",\r\n \"name\": \"hetags\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9892b021-7a6d-41bd-8a9d-af2cb98125c3\",\r\n \"tags\": {\r\n \"Example\": \"Sample\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-17T18:15:47.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hetags-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hetags.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hetags-2019-06-17t18-14-20-888z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/t-shs/providers/Microsoft.HDInsight/clusters/shs-hadoop-001\",\r\n \"name\": \"shs-hadoop-001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8b4ba6e7-d031-4e2a-8b71-491ec7e73e54\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 8,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T11:41:32.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shs-hadoop-001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shs-hadoop-001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanrg/providers/Microsoft.HDInsight/clusters/testpolicyv\",\r\n \"name\": \"testpolicyv\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6a5a41-0f33-4040-ac72-d90cf324534e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-04T18:02:52.25\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testpolicyv-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testpolicyv.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testpolicyv-2019-06-04t17-58-50-263z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/t-shs/providers/Microsoft.HDInsight/clusters/your-hadoop-006\",\r\n \"name\": \"your-hadoop-006\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"393218a6-20c1-4456-9db4-7d9b03c34b7e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-16T03:13:00.803\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"your-hadoop-006-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"your-hadoop-006.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-rufan-rufantest123\",\r\n \"name\": \"spark23-hdi36-rufan-rufantest123\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"584f1a9d-343c-4355-95a1-d97625a5bed3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:42:17.257\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-rufan-rufantest123-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-rufan-rufantest123.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdub-cluster\",\r\n \"name\": \"cdub-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"8346192c-e882-40a5-9879-664e3816e11c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T20:31:39.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdub-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdub-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdub.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdub-cluster-2019-08-12t20-28-28-326z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernotallowed\",\r\n \"name\": \"dstestsshusernotallowed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"e5bf356e-8bf9-4ab8-8e7d-f8b44349fb68\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T01:03:09.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernotallowed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernotallowed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsshusereurope.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusernotallowed-2019-08-07t00-59-21-261z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshuserwesteur\",\r\n \"name\": \"dstestsshuserwesteur\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"3eafc6e4-f7a8-4b01-b0dd-f9bf662f3b1d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Wednesday\",\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T16:39:23.307\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshuserwesteur-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshuserwesteur.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaweutest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestwesteurope12-2019-08-07t16-36-22-222z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8898/providers/Microsoft.HDInsight/clusters/hdi-ps-test1812\",\r\n \"name\": \"hdi-ps-test1812\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"1ced92b0-7b84-4fe2-ae76-624d3605237c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T12:18:12.247\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1812-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1812.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3082/providers/Microsoft.HDInsight/clusters/hdi-ps-test6777\",\r\n \"name\": \"hdi-ps-test6777\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"c7c491a1-f854-4db4-948d-26c2f9d122d2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T11:35:16.577\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6777-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6777.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-iocache\",\r\n \"name\": \"nabikhch-iocache\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"e2afd07d-a9c2-4b4e-bf14-c9d14cc2b703\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T00:32:09.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-iocache-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-iocache.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhchncussa.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-iocache-2019-08-21t00-29-34-867z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/powershell-test-group/providers/Microsoft.HDInsight/clusters/operator-test-ps\",\r\n \"name\": \"operator-test-ps\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"9e65724f-dfcb-440f-bd38-7aa065620b6c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode2\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode3\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode4\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode5\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode6\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode7\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode8\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T11:26:04.95\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"operator-test-ps-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"operator-test-ps.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwastorage0118.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"operator-test-ps-2019-04-22t11-22-03-102z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.HDInsight/clusters/privateiptest\",\r\n \"name\": \"privateiptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"13b72057-6fae-4b10-a314-90b7a0b7d57d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-10-26T18:17:20.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/powershell-test-group/providers/Microsoft.HDInsight/clusters/reader-test-ps\",\r\n \"name\": \"reader-test-ps\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"85305bd9-66e3-45f2-8773-d294def0827c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode2\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode3\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode4\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T10:51:28.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 64\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reader-test-ps-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reader-test-ps.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwastorage0118.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reader-test-ps-2019-04-22t10-50-15-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/abdtest2\",\r\n \"name\": \"abdtest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"9e59a62c-a4a6-4583-b679-8e03520e5024\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-09-28T23:29:54.187\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abdtest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abdtest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abpaiCentralUSRG/providers/Microsoft.HDInsight/clusters/abpaiTip20170519\",\r\n \"name\": \"abpaiTip20170519\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"9f5d5197-3f23-44ef-915c-4232f819f042\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.5.1000.0.10078699.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.0\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T13:40:50.953\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abpaiTip20170519-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abpaiTip20170519.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/hdisecurehadoopabd\",\r\n \"name\": \"hdisecurehadoopabd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"70173edf-16a7-4da2-a005-ee01f7051ab0\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.10722531.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-18T01:23:07.427\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisecurehadoopabd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisecurehadoopabd.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mumou01/providers/Microsoft.HDInsight/clusters/mumouTiPTest01\",\r\n \"name\": \"mumouTiPTest01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"69fc3da4-a0b8-4e90-b7aa-c263fcb94924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-04T00:27:36.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mumou01/providers/Microsoft.HDInsight/clusters/mumouTiPTest02\",\r\n \"name\": \"mumouTiPTest02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"b88d2284-3303-4c47-b649-fff6743187ea\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-04T00:39:16.17\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/eastusheman/providers/Microsoft.HDInsight/clusters/adlsgen2test01\",\r\n \"name\": \"adlsgen2test01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5969ce2e-c554-4bc7-9c00-62e0f9a7c56d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-23T00:04:44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adlsgen2test01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adlsgen2test01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hemanthstgeastus.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanstgeastus/providers/Microsoft.Storage/storageAccounts/hemanthstgeastus\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hemanstgeastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hegayammsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"adlsgen2test01-2019-07-23t00-04-12-800z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hemanstgeastus/providers/microsoft.managedidentity/userassignedidentities/hegayammsi\": {\r\n \"principalId\": \"50774933-7f7f-4a04-9c4f-7c659499baa2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsfsspark111402\",\r\n \"name\": \"dsfsspark111402\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"18538911-1f03-4524-b99d-5575d7760395\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Updating\",\r\n \"createdDate\": \"2018-11-15T06:49:58.253\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsfsspark111402-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsfsspark111402.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dshadooptest\",\r\n \"name\": \"dshadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b37cf975-35c6-4c02-b1ab-5ab3b8ab87d6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-20T20:37:03.143\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsfscreate111505.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dshadooptest-2019-05-20t20-36-05-942z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dskafkagen2\",\r\n \"name\": \"dskafkagen2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ec811f4c-cc35-4017-8aa1-91c42c155ed5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-23T16:55:50.19\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dskafkagen2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dskafkagen2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.Storage/storageAccounts/dstestgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/01hditestdonotdelete/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen2\",\r\n \"key\": null,\r\n \"fileSystem\": \"dskafkagen2-2019-06-23t16-55-03-664z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/01hditestdonotdelete/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen2\": {\r\n \"principalId\": \"93b5cdd6-ef2e-47c6-ba81-fd9c1b43795f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dssparkfstest111501\",\r\n \"name\": \"dssparkfstest111501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c918d8d6-c649-4b75-ac4d-aa65d234db2a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-11-15T08:10:16.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dssparkfstest111501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dssparkfstest111501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusoeastusrg/providers/Microsoft.HDInsight/clusters/mariuso-pv1\",\r\n \"name\": \"mariuso-pv1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"217bbe42-284e-4f1a-bc18-240052a0ab58\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-30T20:30:37.553\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariuso-pv1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariuso-pv1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mariusoeastus04.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mariuso-pv1-2019-07-30t20-29-06-706z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abhisigrg/providers/Microsoft.HDInsight/clusters/mktessbillingbase\",\r\n \"name\": \"mktessbillingbase\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"572af3b4-60df-436c-b23d-f8f1d2c1d17c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-01T18:39:22.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktessBillingbase-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktessBillingbase.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestasldkgndsfgadsfg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktessbillingbase-2019-07-01t18-37-31-401z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.HDInsight/clusters/reddytest-para-vnet\",\r\n \"name\": \"reddytest-para-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"18be41b7-2a0d-41e9-b92c-e2e0191876ae\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902030413.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2019-02-12T23:17:13.82\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.HDInsight/clusters/reddy-vnettest-para\",\r\n \"name\": \"reddy-vnettest-para\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"96092175-6347-4ecb-9640-4eb1abda9155\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902030413.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2019-02-13T00:06:30.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.HDInsight/clusters/sparkrolloutesteaus\",\r\n \"name\": \"sparkrolloutesteaus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7257e704-ee56-455a-8819-ffd8a947f0e7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-03-28T08:22:23.853\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaogao-test2\",\r\n \"name\": \"xiaogao-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1120f01d-77ab-4ad7-a028-52a5ffcb6043\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T12:44:27.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogaotesthdi1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaogao-test2-2019-06-21t12-41-29-519z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadywtraining/providers/Microsoft.HDInsight/clusters/fadywportalapplication\",\r\n \"name\": \"fadywportalapplication\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f54c73a-4f12-4f4e-90f2-8b2c3529d4a4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-17T18:31:13.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywportalapplication-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywportalapplication.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadyw.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadywportalapplication-2019-06-17t18-29-47-289z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138\",\r\n \"name\": \"hdi-ps-test5138\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bacbd343-b7ae-40ca-bb91-612f01026a41\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-09-02T12:47:03.23\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5138-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5138.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/mktestmlfull\",\r\n \"name\": \"mktestmlfull\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"07426f41-6ada-44b6-acef-9df0bb3f2103\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/mlservices-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"MLSERVICES\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-13T00:50:38.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 64\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"EDGESSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull-ed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"961796westus.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestmlfull-2019-06-13t00-46-41-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestmljune14\",\r\n \"name\": \"mktestmljune14\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"1b3590e0-554a-4fa3-bc2c-8e8d8e90d5a9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/mlservices-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"MLSERVICES\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-14T19:24:44.193\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"EDGESSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14-ed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"duschtest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestmljune14-2019-06-14t19-23-28-307z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sparkvmss/providers/Microsoft.HDInsight/clusters/sparkvmss\",\r\n \"name\": \"sparkvmss\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"74f80c2a-b55f-42fb-85a3-dc85fe848e38\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.65\",\r\n \"clusterHdpVersion\": \"2.6.5.10-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.65.1808011849.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-15T22:53:59.557\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkvmss-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkvmss.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/tacoxcanaryrg/providers/Microsoft.HDInsight/clusters/tacoxteam3westuscheckspark\",\r\n \"name\": \"tacoxteam3westuscheckspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c9bf2b21-d6fc-4054-a53f-fa1947f40889\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T17:13:44.273\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3westuscheckspark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3westuscheckspark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"tacoxsandboxstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"tacoxteam3westuscheckspark\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-demo1\",\r\n \"name\": \"srinikr-demo1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"f9591dff-348f-4959-861f-4a4ba7302c93\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3007-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902081838.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-19T01:16:52.87\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-demo1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-demo1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-frce-sp22-0704\",\r\n \"name\": \"srinikr-frce-sp22-0704\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"France Central\",\r\n \"etag\": \"c2be9250-ca57-47c4-af01-cd92d3b9f54d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1906261920.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-04T17:28:08.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-frce-sp22-0704-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-frce-sp22-0704.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinikrfrce0704.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinikr-frce-sp22-0704-2019-07-04t17-25-19-265z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dshive52901\",\r\n \"name\": \"dshive52901\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"9dd389dd-42fa-4a68-b50c-cc60bac3167b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-29T23:21:35.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshive52901-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshive52901.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestautoscale52901.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dshive52901-2019-05-29t23-20-45-308z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dstestautoscale1204\",\r\n \"name\": \"dstestautoscale1204\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"000fbd95-d454-4671-aea5-6c31aa95c76f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-23\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1812021626.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-12-04T20:51:38.46\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale1204-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale1204.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscale52901\",\r\n \"name\": \"dstestautoscale52901\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"036861ce-7610-4432-b81d-293133d3987f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-29T23:04:49.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale52901-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale52901.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestautoscale52901.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscale52901-2019-05-29t23-03-54-481z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jiyingcanarytest/providers/Microsoft.HDInsight/clusters/jiyinglipubcanary1\",\r\n \"name\": \"jiyinglipubcanary1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"915b5eb2-ec7e-4041-9a8a-cc8f38e152ff\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1905062133.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T00:38:23.843\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jiyinglipubcanary1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jiyinglipubcanary1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"tacoxcanarywasb.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jiyinglipubcanary1-2019-08-21t00-28-07-133z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mogorantEUS-rg/providers/Microsoft.HDInsight/clusters/mogoranteuscluster\",\r\n \"name\": \"mogoranteuscluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"874de4f9-1863-40d8-be05-6e7c2cc57af3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-06T00:50:29.543\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mogorantEUSCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mogorantEUSCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mogoranteusstorage.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mogorantEUS-rg/providers/Microsoft.Storage/storageAccounts/mogoranteusstorage\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mogorantEUS-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mogorantUAEUS\",\r\n \"key\": null,\r\n \"fileSystem\": \"mogoranteuscluster-2019-07-06t00-44-58-791z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mogoranteus-rg/providers/microsoft.managedidentity/userassignedidentities/mogorantuaeus\": {\r\n \"principalId\": \"adf54af6-a3bc-4b1e-b08e-c6c46705ad85\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/tacoxcanaryrg/providers/Microsoft.HDInsight/clusters/tacoxcanarynoshsha1\",\r\n \"name\": \"tacoxcanarynoshsha1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"9dee88fc-ef3a-4e89-97d0-04145fdcf9d3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.1908082122.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T19:03:31.637\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxcanarynoshsha1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxcanarynoshsha1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nkhteam3abfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nkhteam3rg/providers/Microsoft.Storage/storageAccounts/nkhteam3abfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/nkhteam3rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/nkhmanagedidentity\",\r\n \"key\": null,\r\n \"fileSystem\": \"tacoxcanarynoshsha1\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/nkhteam3rg/providers/microsoft.managedidentity/userassignedidentities/nkhmanagedidentity\": {\r\n \"principalId\": \"8ba65834-3a54-47d4-97e5-963837484473\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a5d40c7-a439-4cd0-8294-8f3478214c4e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "459e9413-2045-42b3-a075-128b2e8707b8", - "451b852a-890a-46cb-a8f5-b4e52b0cd9d7", - "8225690b-bc6a-4e4d-b700-0e8953a505c4", - "4660efed-2607-49d5-857f-304fab68349c", - "e2d1f912-888a-4945-888f-5cbaa3eb8043", - "bcc22516-5f92-438f-8fbf-cee539b103c6", - "875ce721-30ac-4099-956f-603729708c0c", - "af19669d-8efa-4b9f-9bf2-5a6c9a9ec378", - "9bbfeb5f-d6d9-439a-b6cc-9d8fc9fcd7dc", - "31ed9662-0c23-4d97-9829-570b77736e26", - "f3d22f5e-845a-4b98-ace0-7ed27b851db5", - "f008d937-b28b-4118-b81a-2a4ac7d20569", - "b6198265-ae9e-4beb-8663-bca95ebd4962", - "42daede3-b54c-4264-86ee-29294850dcde", - "3376e263-bf6e-4479-a363-2c0a4204da65" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-request-id": [ - "7eed08f4-ba5a-44a0-be36-fb3e05326fb0" - ], - "x-ms-correlation-request-id": [ - "7eed08f4-ba5a-44a0-be36-fb3e05326fb0" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130243Z:7eed08f4-ba5a-44a0-be36-fb3e05326fb0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:43 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "575400" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test/providers/Microsoft.HDInsight/clusters/tacoxteam3abfsmsi\",\r\n \"name\": \"tacoxteam3abfsmsi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Central US\",\r\n \"etag\": \"965fc9e3-6513-406f-8b7e-68e7c47256eb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.1000.1.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-30T00:34:54.4\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToCopyBlobsToClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3abfsmsi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3abfsmsi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdiabfsrctest.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdircresources/providers/Microsoft.Storage/storageAccounts/hdiabfsrctest\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/tacoxteam3msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"tacoxteam3abfsmsi\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/test/providers/microsoft.managedidentity/userassignedidentities/tacoxteam3msi\": {\r\n \"principalId\": \"c099b803-077b-471a-bbae-a649499386e8\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test396/providers/Microsoft.HDInsight/clusters/hdi-ps-test3097\",\r\n \"name\": \"hdi-ps-test3097\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5d0ab07c-5707-43d1-9f9c-d13081e4fcbd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T12:11:49.94\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3097-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3097.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6879/providers/Microsoft.HDInsight/clusters/hdi-ps-test4437\",\r\n \"name\": \"hdi-ps-test4437\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"785922d3-dcba-48c4-a03c-d5ebe8d9333c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-19T11:24:49.243\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4437-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4437.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test2551/providers/Microsoft.HDInsight/clusters/hdi-ps-test4902\",\r\n \"name\": \"hdi-ps-test4902\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"743bc362-354c-4d56-9f8f-2a4330f37622\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-20T12:38:38.53\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4902-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test4902.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test6504/providers/Microsoft.HDInsight/clusters/hdi-ps-test58\",\r\n \"name\": \"hdi-ps-test58\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"75d4c678-cb2e-474a-9c27-aa6bd1e2934a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-20T12:32:08.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test58-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test58.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8833/providers/Microsoft.HDInsight/clusters/hdi-ps-test6942\",\r\n \"name\": \"hdi-ps-test6942\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"058878cc-a4b7-45d1-880e-d9539db312c9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-23T12:00:02.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6942-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6942.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5287/providers/Microsoft.HDInsight/clusters/hdi-ps-test9138\",\r\n \"name\": \"hdi-ps-test9138\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"81357f39-5444-4c9b-aca2-6ff813471dc5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-19T09:32:58.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9138-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test9138.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sijin-azportalclusters/providers/Microsoft.HDInsight/clusters/sijin-playcluster\",\r\n \"name\": \"sijin-playcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"5b40feaf-a6d5-4250-b864-b5bda426da8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-28T22:33:03.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-playcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sijin-playcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sijinplaystorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sijin-playcluster-2019-08-28t22-31-30-511z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinliurgp/providers/Microsoft.HDInsight/clusters/xinliuhive2\",\r\n \"name\": \"xinliuhive2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"e3d68899-94fe-457e-b18a-17ad83b324b9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:30:23.463\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhive2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhive2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinliuhive2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinliuhive2-2019-06-26t23-28-56-419z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinliurgp/providers/Microsoft.HDInsight/clusters/xinliuhiveperf\",\r\n \"name\": \"xinliuhiveperf\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b85e9d30-1424-4c34-b3e5-c1fcc2f28848\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-28T17:37:32.827\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhiveperf-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinliuhiveperf.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinliuhive2.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinliuhiveperf-2019-08-28t17-25-33-425z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernamecanada\",\r\n \"name\": \"dstestsshusernamecanada\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"e2232877-72ed-4320-bd87-bd6828b8ffbb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T00:42:02.21\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecanada-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecanada.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dssshusernametest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusername-2019-08-07t00-37-56-517z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernamecaneast\",\r\n \"name\": \"dstestsshusernamecaneast\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"887d1f07-bd8a-43c2-90f6-5ac5d61af5be\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T02:02:17.227\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecaneast-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernamecaneast.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dssshusernametest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusercaneast-2019-08-07t01-59-33-318z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-uks-zk-1\",\r\n \"name\": \"srinikr-uks-zk-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Uk South\",\r\n \"etag\": \"f007fef4-427e-41e8-9500-0b93ef90ed2d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-02T19:02:15.32\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-uks-zk-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-uks-zk-1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanrg/providers/Microsoft.HDInsight/clusters/ambarifailuretest\",\r\n \"name\": \"ambarifailuretest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"792b239c-dc4f-4e33-bd6e-c94d32cbc2a2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d5_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 50,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-30T17:06:26.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 432\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToScaleClusterErrorCode\",\r\n \"message\": \"Encountered failure(s) scaling cluster to 10 nodes. Scaling operation partially succeeded with a final node count of 50. Scaling error code: FailedToScaleClusterErrorCode.\"\r\n },\r\n {\r\n \"code\": \"FailedToScaleClusterErrorCode\",\r\n \"message\": \"Encountered failure(s) scaling cluster to 10 nodes. Scaling operation partially succeeded with a final node count of 50. Scaling error code: FailedToScaleClusterErrorCode.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ambarifailuretest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ambarifailuretest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ambarifailuretest-2019-08-30t17-04-40-489z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtest1\",\r\n \"name\": \"ammengtest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"92265e2e-4258-458f-b99f-105bcd094e3f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:50:35.823\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtest1-2019-08-14t23-46-59-824z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ammeng/providers/Microsoft.HDInsight/clusters/ammengtest2\",\r\n \"name\": \"ammengtest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"60097014-29c3-4fff-98fc-259d4ec31678\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-15T18:21:44.243\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ammengtest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ammengstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ammengtest2-2019-08-15t18-17-44-415z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/testsg/providers/Microsoft.HDInsight/clusters/clusterpwdresettest\",\r\n \"name\": \"clusterpwdresettest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"21dfd229-e256-4daf-a1a7-739d10ca7f23\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-26T19:00:38.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clusterpwdresettest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"clusterpwdresettest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"clusterpwdresettest-2019-08-26t18-56-07-173z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8416/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt2561\",\r\n \"name\": \"hdisdk-humboldt2561\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"e0ccb53e-d88f-414a-af44-714e9b3e4649\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 3\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"18:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"10:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"19:00\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9786\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-23T04:35:20.577\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt2561-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt2561.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage8235.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8096\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg2800/providers/Microsoft.HDInsight/clusters/hdisdk-humboldt4456\",\r\n \"name\": \"hdisdk-humboldt4456\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"e3c42c01-bba4-47bb-adfa-9f1a53abb4c5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 3\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\",\r\n \"Thursday\",\r\n \"Wednesday\",\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"18:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"10:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Saturday\",\r\n \"Sunday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"19:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser8705\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-22T08:07:17.617\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt4456-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-humboldt4456.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage1932.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default4494\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hegayamrg/providers/Microsoft.HDInsight/clusters/hetags\",\r\n \"name\": \"hetags\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"9892b021-7a6d-41bd-8a9d-af2cb98125c3\",\r\n \"tags\": {\r\n \"Example\": \"Sample\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-17T18:15:47.61\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hetags-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hetags.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hetags-2019-06-17t18-14-20-888z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/t-shs/providers/Microsoft.HDInsight/clusters/shs-hadoop-001\",\r\n \"name\": \"shs-hadoop-001\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"8b4ba6e7-d031-4e2a-8b71-491ec7e73e54\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 8,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T11:41:32.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shs-hadoop-001-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shs-hadoop-001.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanrg/providers/Microsoft.HDInsight/clusters/testpolicyv\",\r\n \"name\": \"testpolicyv\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"6c6a5a41-0f33-4040-ac72-d90cf324534e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-04T18:02:52.25\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testpolicyv-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testpolicyv.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hegayamstg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testpolicyv-2019-06-04t17-58-50-263z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/t-shs/providers/Microsoft.HDInsight/clusters/your-hadoop-006\",\r\n \"name\": \"your-hadoop-006\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"393218a6-20c1-4456-9db4-7d9b03c34b7e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshroot\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-16T03:13:00.803\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"your-hadoop-006-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"your-hadoop-006.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-rufan-rufantest123\",\r\n \"name\": \"spark23-hdi36-rufan-rufantest123\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Europe\",\r\n \"etag\": \"584f1a9d-343c-4355-95a1-d97625a5bed3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:42:17.257\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-rufan-rufantest123-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-rufan-rufantest123.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cdub-rg/providers/Microsoft.HDInsight/clusters/cdub-cluster\",\r\n \"name\": \"cdub-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"8346192c-e882-40a5-9879-664e3816e11c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T20:31:39.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdub-cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"cdub-cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"cdub.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"cdub-cluster-2019-08-12t20-28-28-326z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshusernotallowed\",\r\n \"name\": \"dstestsshusernotallowed\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"e5bf356e-8bf9-4ab8-8e7d-f8b44349fb68\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T01:03:09.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernotallowed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshusernotallowed.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsshusereurope.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestsshusernotallowed-2019-08-07t00-59-21-261z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestsshuserwesteur\",\r\n \"name\": \"dstestsshuserwesteur\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"3eafc6e4-f7a8-4b01-b0dd-f9bf662f3b1d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Wednesday\",\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser_@\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-07T16:39:23.307\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 56\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshuserwesteur-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestsshuserwesteur.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaweutest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestwesteurope12-2019-08-07t16-36-22-222z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test8898/providers/Microsoft.HDInsight/clusters/hdi-ps-test1812\",\r\n \"name\": \"hdi-ps-test1812\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"1ced92b0-7b84-4fe2-ae76-624d3605237c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T12:18:12.247\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1812-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test1812.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test3082/providers/Microsoft.HDInsight/clusters/hdi-ps-test6777\",\r\n \"name\": \"hdi-ps-test6777\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"c7c491a1-f854-4db4-948d-26c2f9d122d2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-23T11:35:16.577\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6777-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test6777.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-iocache\",\r\n \"name\": \"nabikhch-iocache\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"e2afd07d-a9c2-4b4e-bf14-c9d14cc2b703\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T00:32:09.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-iocache-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-iocache.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhchncussa.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-iocache-2019-08-21t00-29-34-867z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/powershell-test-group/providers/Microsoft.HDInsight/clusters/operator-test-ps\",\r\n \"name\": \"operator-test-ps\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"9e65724f-dfcb-440f-bd38-7aa065620b6c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode2\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode3\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode4\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode5\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode6\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode7\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode8\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T11:26:04.95\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"operator-test-ps-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"operator-test-ps.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwastorage0118.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"operator-test-ps-2019-04-22t11-22-03-102z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.HDInsight/clusters/privateiptest\",\r\n \"name\": \"privateiptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"13b72057-6fae-4b10-a314-90b7a0b7d57d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/privateiptest/providers/Microsoft.Network/virtualNetworks/privateiptest/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-10-26T18:17:20.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"privateiptest-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/powershell-test-group/providers/Microsoft.HDInsight/clusters/reader-test-ps\",\r\n \"name\": \"reader-test-ps\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"North Central US\",\r\n \"etag\": \"85305bd9-66e3-45f2-8773-d294def0827c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode2\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode3\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode4\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T10:51:28.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 64\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reader-test-ps-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reader-test-ps.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dongwwastorage0118.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reader-test-ps-2019-04-22t10-50-15-644z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/abdtest2\",\r\n \"name\": \"abdtest2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"9e59a62c-a4a6-4583-b679-8e03520e5024\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"hdiuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-09-28T23:29:54.187\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abdtest2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abdtest2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abpaiCentralUSRG/providers/Microsoft.HDInsight/clusters/abpaiTip20170519\",\r\n \"name\": \"abpaiTip20170519\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"9f5d5197-3f23-44ef-915c-4232f819f042\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.5.1000.0.10078699.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.0\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T13:40:50.953\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abpaiTip20170519-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"abpaiTip20170519.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/hdisecurehadoopabd\",\r\n \"name\": \"hdisecurehadoopabd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"70173edf-16a7-4da2-a005-ee01f7051ab0\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.0.10722531.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/adSubnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-18T01:23:07.427\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisecurehadoopabd-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisecurehadoopabd.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mumou01/providers/Microsoft.HDInsight/clusters/mumouTiPTest01\",\r\n \"name\": \"mumouTiPTest01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"69fc3da4-a0b8-4e90-b7aa-c263fcb94924\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-04T00:27:36.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mumou01/providers/Microsoft.HDInsight/clusters/mumouTiPTest02\",\r\n \"name\": \"mumouTiPTest02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"b88d2284-3303-4c47-b649-fff6743187ea\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10722531.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-10-04T00:39:16.17\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mumouTiPTest02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/eastusheman/providers/Microsoft.HDInsight/clusters/adlsgen2test01\",\r\n \"name\": \"adlsgen2test01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5969ce2e-c554-4bc7-9c00-62e0f9a7c56d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-23T00:04:44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adlsgen2test01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"adlsgen2test01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hemanthstgeastus.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hemanstgeastus/providers/Microsoft.Storage/storageAccounts/hemanthstgeastus\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hemanstgeastus/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hegayammsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"adlsgen2test01-2019-07-23t00-04-12-800z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hemanstgeastus/providers/microsoft.managedidentity/userassignedidentities/hegayammsi\": {\r\n \"principalId\": \"50774933-7f7f-4a04-9c4f-7c659499baa2\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsfsspark111402\",\r\n \"name\": \"dsfsspark111402\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"18538911-1f03-4524-b99d-5575d7760395\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Updating\",\r\n \"createdDate\": \"2018-11-15T06:49:58.253\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsfsspark111402-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsfsspark111402.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dshadooptest\",\r\n \"name\": \"dshadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b37cf975-35c6-4c02-b1ab-5ab3b8ab87d6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-20T20:37:03.143\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsfscreate111505.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dshadooptest-2019-05-20t20-36-05-942z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dskafkagen2\",\r\n \"name\": \"dskafkagen2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ec811f4c-cc35-4017-8aa1-91c42c155ed5\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 5,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-23T16:55:50.19\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dskafkagen2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dskafkagen2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.Storage/storageAccounts/dstestgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/01hditestdonotdelete/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen2\",\r\n \"key\": null,\r\n \"fileSystem\": \"dskafkagen2-2019-06-23t16-55-03-664z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/01hditestdonotdelete/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen2\": {\r\n \"principalId\": \"93b5cdd6-ef2e-47c6-ba81-fd9c1b43795f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dssparkfstest111501\",\r\n \"name\": \"dssparkfstest111501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c918d8d6-c649-4b75-ac4d-aa65d234db2a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-11-15T08:10:16.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dssparkfstest111501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dssparkfstest111501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mariusoeastusrg/providers/Microsoft.HDInsight/clusters/mariuso-pv1\",\r\n \"name\": \"mariuso-pv1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"217bbe42-284e-4f1a-bc18-240052a0ab58\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-30T20:30:37.553\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariuso-pv1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mariuso-pv1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mariusoeastus04.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mariuso-pv1-2019-07-30t20-29-06-706z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-custv-cluster-rg/providers/Microsoft.HDInsight/clusters/mawolfen-clust-to-lock\",\r\n \"name\": \"mawolfen-clust-to-lock\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"2b8ecc2c-9556-42ca-b0b9-e7827f14eb2f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3004-13\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810270004.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mawolfen-253943-eus-customvnet-rg/providers/Microsoft.Network/virtualNetworks/mawolfen-eus-custom-vnet/subnets/mawolfen-eus-custom-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-12-10T17:35:07.003\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mawolfen-clust-to-lock-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abhisigrg/providers/Microsoft.HDInsight/clusters/mktessbillingbase\",\r\n \"name\": \"mktessbillingbase\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"572af3b4-60df-436c-b23d-f8f1d2c1d17c\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-01T18:39:22.28\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktessBillingbase-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktessBillingbase.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestasldkgndsfgadsfg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktessbillingbase-2019-07-01t18-37-31-401z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.HDInsight/clusters/reddytest-para-vnet\",\r\n \"name\": \"reddytest-para-vnet\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"18be41b7-2a0d-41e9-b92c-e2e0191876ae\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902030413.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2019-02-12T23:17:13.82\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-para-vnet-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.HDInsight/clusters/reddy-vnettest-para\",\r\n \"name\": \"reddy-vnettest-para\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"96092175-6347-4ecb-9640-4eb1abda9155\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902030413.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Reddy(VR)-RG/providers/Microsoft.Network/virtualNetworks/reddytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2019-02-13T00:06:30.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddy-vnettest-para-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.HDInsight/clusters/sparkrolloutesteaus\",\r\n \"name\": \"sparkrolloutesteaus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7257e704-ee56-455a-8819-ffd8a947f0e7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rolloutteset/providers/Microsoft.Network/virtualNetworks/rollouttestvirtualnetwork/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-03-28T08:22:23.853\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkrolloutesteaus-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaogao-test2\",\r\n \"name\": \"xiaogao-test2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1120f01d-77ab-4ad7-a028-52a5ffcb6043\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.Network/virtualNetworks/xiaogao-test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T12:44:27.923\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaogao-test2-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogaotesthdi1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaogao-test2-2019-06-21t12-41-29-519z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dsautoscale01\",\r\n \"name\": \"dsautoscale01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a4a0f4f2-8097-4fe3-a0c9-a7dc4f68c4f7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.61-4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1808181812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-28T21:34:17.063\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsautoScale01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsspark36wasb\",\r\n \"name\": \"dsspark36wasb\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"14f79477-9217-4bcf-a7e4-b0dcc2c52f9e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 5,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Friday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"23:40\",\r\n \"minInstanceCount\": 6,\r\n \"maxInstanceCount\": 6\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-22T00:29:18.303\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 60\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsspark36wasb.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobadditional02.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsspark36wasb-2019-06-22t00-27-58-149z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstest5819\",\r\n \"name\": \"dstest5819\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"d60990b1-0496-4732-bd4f-8bc01c71af90\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T18:53:24.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n },\r\n {\r\n \"code\": \"InvalidDocumentErrorCode\",\r\n \"message\": \"DeploymentDocument 'PrepareClusterScalingInputsActivity' failed the validation. Error: 'Cannot process request for additional '16' cores in region 'East US 2'. Max cores allowed '1000' and subscription is already using '995' cores'\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstest5819.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstest5819-2019-05-08t18-52-10-383z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscaledate\",\r\n \"name\": \"dstestautoscaledate\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"294f3230-ad5b-4976-9604-bb009e260d05\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-08T17:25:41.653\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscaledate.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsblobstorage01.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscaledate-2019-05-08t17-23-59-936z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorage\",\r\n \"name\": \"dsteststorage\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"7748edc6-bf09-4231-af77-3bb9c62c4187\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-24T22:07:47.327\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorage.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ptadd130.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorage-2019-04-24t22-06-02-350z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"dgdfgfhfghgg.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dsteststorageprof\",\r\n \"name\": \"dsteststorageprof\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"29da5621-6765-4a40-b79f-debf7f75ddbf\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-26T20:14:38.75\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dsteststorageprof.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdfdfdgf.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dsteststorageprof-2019-04-26t20-13-26-602z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestvma6\",\r\n \"name\": \"dstestvma6\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"95ed6f04-a950-4d98-b6f0-ad1aee6048b3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_a7\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a6\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-13T00:23:36.84\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestvma6.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestscusa6.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestvma6-2019-08-13t00-21-27-842z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/brijesh135/providers/Microsoft.HDInsight/clusters/hdinsightprac01\",\r\n \"name\": \"hdinsightprac01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c9741c34-bec9-49cf-830e-f74697256e52\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T17:55:14.06\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdInsightPrac01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"blpr.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdinsightprac01-2019-04-18t17-26-39-491z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg1750/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hue2183\",\r\n \"name\": \"hdisdk-applications-hue2183\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"57de9f52-e454-4707-bd66-f9e69efa2207\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser7218\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-18T06:51:57.583\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-applications-hue2183.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7215.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default9408\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3806/providers/Microsoft.HDInsight/clusters/hdisdk-autoscale7161\",\r\n \"name\": \"hdisdk-autoscale7161\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ec8615a9-d948-4d3f-bf37-6de833b2b1fb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser9381\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-08T05:50:53.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-autoscale7161.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3969.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1783\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg7499/providers/Microsoft.HDInsight/clusters/hdisdk-kafka-byok4335\",\r\n \"name\": \"hdisdk-kafka-byok4335\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e4265ce1-61f6-4214-9d31-43236b4cebeb\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904190050.json\",\r\n \"kind\": \"Kafka\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\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_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 8,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser5357\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-09T10:11:16.96\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 23\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-kafka-byok4335.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://hdicsharpvault8302.vault.azure.net:443\",\r\n \"keyName\": \"hdicsharpkey14754\",\r\n \"keyVersion\": \"68fccfe1b02d484aaf369afa6ef8a755\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\"\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage5671.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default1560\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/hdicsharprg7499/providers/microsoft.managedidentity/userassignedidentities/hdicsharpmsi8293\": {\r\n \"principalId\": \"8f41664e-d2d4-4f42-8086-464875314216\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg9397/providers/Microsoft.HDInsight/clusters/hdisdk-loadbased5822\",\r\n \"name\": \"hdisdk-loadbased5822\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5a57a447-e6a9-4a2a-98ba-6801b028a1d1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser4032\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-08-12T03:03:25.35\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"StorageContainerMayHaveBeenDeletedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-loadbased5822.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage501.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5853\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3231/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased4954\",\r\n \"name\": \"hdisdk-schedulebased4954\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"675adc54-c288-455e-878f-e4865189769a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1703\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:36:43.9\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased4954.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage6589.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default6970\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg3301/providers/Microsoft.HDInsight/clusters/hdisdk-schedulebased5430\",\r\n \"name\": \"hdisdk-schedulebased5430\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3547b966-9128-4cbc-a9f9-3592e13436c8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"China Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Thursday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"16:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser3043\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-12T02:44:06.007\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-schedulebased5430.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7627.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5253\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparkgen1\",\r\n \"name\": \"mktestsparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c7fa5266-8975-4377-b040-4d6c1b2451b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 7\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T19:40:15.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestsparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparkgen1-2019-08-14t19-35-48-158z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestsparksdk\",\r\n \"name\": \"mktestsparksdk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"72b52f75-c33a-47fa-b165-db55c0c35bec\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1907200859.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 5\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-14T23:59:38.55\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestSparksdk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mktestsparkgen1.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestsparksdk-2019-08-14t23-55-54-558z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktesttip0712\",\r\n \"name\": \"mktesttip0712\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a5c07c7f-8f57-4001-ba08-abae1ca7ee8e\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"autoscale\": {\r\n \"recurrence\": {\r\n \"timeZone\": \"Pacific Standard Time\",\r\n \"schedule\": [\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"09:00\",\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n {\r\n \"days\": [\r\n \"Monday\",\r\n \"Tuesday\"\r\n ],\r\n \"timeAndCapacity\": {\r\n \"time\": \"11:00\",\r\n \"minInstanceCount\": 4,\r\n \"maxInstanceCount\": 4\r\n }\r\n }\r\n ]\r\n }\r\n },\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 \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2019-07-12T18:56:35.777\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidWasbAccountConfigNoCustomVNet\",\r\n \"message\": \"Custom VNET is required to create a cluster with Network ACLed storage account: 'dsabfs'\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dsabfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.Storage/storageAccounts/dsabfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/dstestmsigen\",\r\n \"key\": null,\r\n \"fileSystem\": \"mktesttip0712-2019-07-12t18-50-08-807z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n },\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/dsrg/providers/microsoft.managedidentity/userassignedidentities/dstestmsigen\": {}\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/nabikhch-kafka\",\r\n \"name\": \"nabikhch-kafka\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"96cf6fb9-4750-4c40-a457-47ba413adb42\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"1.1\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-22T21:42:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-kafka.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"anushaeus2test.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-kafka-2019-04-22t21-40-33-494z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/pt22sparkgen1\",\r\n \"name\": \"pt22sparkgen1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"3026c9fe-0c04-42da-89e7-6637821b66a1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:21:01.047\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"pt22sparkgen1-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/ptgen1spark21\",\r\n \"name\": \"ptgen1spark21\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"ee231aec-59cd-4e5d-920d-b45341ef7450\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1902212237.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\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 \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.Network/virtualNetworks/abdrg-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-28T23:13:26.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ptgen1spark21-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\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\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/sdfgsdfgsfdg\",\r\n \"name\": \"sdfgsdfgsfdg\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"798591a4-89fb-43e7-b280-68b0b7825ad4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-3.6.1000.67.1906212304.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"1.1\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-26T23:00:39.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 80\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sdfgsdfgsfdg.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"muanandastorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sdfgsdfgsfdg-2019-06-26t22-56-15-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi36-adls-rufan\",\r\n \"name\": \"spark23-hdi36-adls-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"8e8730c4-c3bb-48e9-a7c9-c9fb565886b6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1904102316.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-19T04:28:24.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi36-adls-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": []\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rufan_hdi_rg/providers/Microsoft.HDInsight/clusters/spark23-hdi4-rufan\",\r\n \"name\": \"spark23-hdi4-rufan\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"5013dff9-98e5-430c-82c4-df007ba0415b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1904060403.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-18T07:47:32.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark23-hdi4-rufan.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rufan0418.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark23-hdi4-rufan-2019-04-18t07-45-29-758z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhcheastus2euaprg/providers/Microsoft.HDInsight/clusters/testnabikhch\",\r\n \"name\": \"testnabikhch\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4eee0bc3-73d4-41d1-ba32-994f59102c44\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3006-29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1903060535.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-04-04T23:46:48.7\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testnabikhch.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xiaogao/providers/Microsoft.HDInsight/clusters/xiaoning-test1\",\r\n \"name\": \"xiaoning-test1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"18795d45-8e33-4473-bb12-7231e5c3c845\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1906052356.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 10,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-21T10:47:45.927\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 88\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xiaoning-test1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xiaogao.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xiaoning-test1-2019-06-21t10-38-37-122z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fadywtraining/providers/Microsoft.HDInsight/clusters/fadywportalapplication\",\r\n \"name\": \"fadywportalapplication\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f54c73a-4f12-4f4e-90f2-8b2c3529d4a4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-17T18:31:13.357\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywportalapplication-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"fadywportalapplication.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"fadyw.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"fadywportalapplication-2019-06-17t18-29-47-289z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138\",\r\n \"name\": \"hdi-ps-test5138\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bacbd343-b7ae-40ca-bb91-612f01026a41\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3009-43\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.1908082122.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-09-02T12:47:03.23\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5138-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test5138.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/abdrg/providers/Microsoft.HDInsight/clusters/mktestmlfull\",\r\n \"name\": \"mktestmlfull\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"07426f41-6ada-44b6-acef-9df0bb3f2103\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/mlservices-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"MLSERVICES\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 6,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-13T00:50:38.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 64\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"EDGESSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull-ed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLFull.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"961796westus.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestmlfull-2019-06-13t00-46-41-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mktestRG/providers/Microsoft.HDInsight/clusters/mktestmljune14\",\r\n \"name\": \"mktestmljune14\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"1b3590e0-554a-4fa3-bc2c-8e8d8e90d5a9\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.3\",\r\n \"clusterHdpVersion\": \"2.6.3.84-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/mlservices-3.6.1000.3.1810270004.json\",\r\n \"kind\": \"MLSERVICES\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-06-14T19:24:44.193\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"EDGESSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14-ed-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mktestMLJune14.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"duschtest.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"mktestmljune14-2019-06-14t19-23-28-307z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/sparkvmss/providers/Microsoft.HDInsight/clusters/sparkvmss\",\r\n \"name\": \"sparkvmss\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"74f80c2a-b55f-42fb-85a3-dc85fe848e38\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.65\",\r\n \"clusterHdpVersion\": \"2.6.5.10-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.65.1808011849.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshadmin\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-08-15T22:53:59.557\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkvmss-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkvmss.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/tacoxcanaryrg/providers/Microsoft.HDInsight/clusters/tacoxteam3westuscheckspark\",\r\n \"name\": \"tacoxteam3westuscheckspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"c9bf2b21-d6fc-4054-a53f-fa1947f40889\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.1906270544.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T17:13:44.273\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3westuscheckspark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxteam3westuscheckspark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"tacoxsandboxstorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"tacoxteam3westuscheckspark\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-test-wawon-rg/providers/Microsoft.HDInsight/clusters/wawon-test\",\r\n \"name\": \"wawon-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"2f286f2f-9bb1-4348-9fbd-7ee9fc35091b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3003-25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1810062023.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wawon-diskencrypt/providers/Microsoft.Network/virtualNetworks/wawon-diskencrypt-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2018-11-12T01:23:36.633\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wawon-test-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-demo1\",\r\n \"name\": \"srinikr-demo1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"f9591dff-348f-4959-861f-4a4ba7302c93\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3007-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1902081838.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-02-19T01:16:52.87\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-demo1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-demo1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/srinikr-rg/providers/Microsoft.HDInsight/clusters/srinikr-frce-sp22-0704\",\r\n \"name\": \"srinikr-frce-sp22-0704\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"France Central\",\r\n \"etag\": \"c2be9250-ca57-47c4-af01-cd92d3b9f54d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"2.6.2.38-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.1906261920.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.2\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-04T17:28:08.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-frce-sp22-0704-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"srinikr-frce-sp22-0704.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinikrfrce0704.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinikr-frce-sp22-0704-2019-07-04t17-25-19-265z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dshive52901\",\r\n \"name\": \"dshive52901\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"9dd389dd-42fa-4a68-b50c-cc60bac3167b\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-29T23:21:35.423\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshive52901-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dshive52901.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestautoscale52901.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dshive52901-2019-05-29t23-20-45-308z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01hditestdonotdelete/providers/Microsoft.HDInsight/clusters/dstestautoscale1204\",\r\n \"name\": \"dstestautoscale1204\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"000fbd95-d454-4671-aea5-6c31aa95c76f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3005-23\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1812021626.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-12-04T20:51:38.46\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale1204-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale1204.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/dsrg/providers/Microsoft.HDInsight/clusters/dstestautoscale52901\",\r\n \"name\": \"dstestautoscale52901\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"036861ce-7610-4432-b81d-293133d3987f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.1905062133.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 3,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-05-29T23:04:49.747\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale52901-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"dstestautoscale52901.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"dstestautoscale52901.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"dstestautoscale52901-2019-05-29t23-03-54-481z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jiyingcanarytest/providers/Microsoft.HDInsight/clusters/jiyinglipubcanary1\",\r\n \"name\": \"jiyinglipubcanary1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"915b5eb2-ec7e-4041-9a8a-cc8f38e152ff\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.0\",\r\n \"clusterHdpVersion\": \"3.0.2.1-8\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.0.1905062133.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.3\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T00:38:23.843\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jiyinglipubcanary1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jiyinglipubcanary1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"tacoxcanarywasb.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jiyinglipubcanary1-2019-08-21t00-28-07-133z\",\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mogorantEUS-rg/providers/Microsoft.HDInsight/clusters/mogoranteuscluster\",\r\n \"name\": \"mogoranteuscluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"874de4f9-1863-40d8-be05-6e7c2cc57af3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3008-11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-3.6.1000.67.1906270544.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"2.1\"\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 }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-07-06T00:50:29.543\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 92\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mogorantEUSCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"mogorantEUSCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"mogoranteusstorage.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/mogorantEUS-rg/providers/Microsoft.Storage/storageAccounts/mogoranteusstorage\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mogorantEUS-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mogorantUAEUS\",\r\n \"key\": null,\r\n \"fileSystem\": \"mogoranteuscluster-2019-07-06t00-44-58-791z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/mogoranteus-rg/providers/microsoft.managedidentity/userassignedidentities/mogorantuaeus\": {\r\n \"principalId\": \"adf54af6-a3bc-4b1e-b08e-c6c46705ad85\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/tacoxcanaryrg/providers/Microsoft.HDInsight/clusters/tacoxcanarynoshsha1\",\r\n \"name\": \"tacoxcanarynoshsha1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2 Euap\",\r\n \"etag\": \"9dee88fc-ef3a-4e89-97d0-04145fdcf9d3\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.1000.1\",\r\n \"clusterHdpVersion\": \"3.1.2.1-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.1000.1.1908082122.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\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_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\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 \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2019-08-21T19:03:31.637\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxcanarynoshsha1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"tacoxcanarynoshsha1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nkhteam3abfs.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nkhteam3rg/providers/Microsoft.Storage/storageAccounts/nkhteam3abfs\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/nkhteam3rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/nkhmanagedidentity\",\r\n \"key\": null,\r\n \"fileSystem\": \"tacoxcanarynoshsha1\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/nkhteam3rg/providers/microsoft.managedidentity/userassignedidentities/nkhmanagedidentity\": {\r\n \"principalId\": \"8ba65834-3a54-47d4-97e5-963837484473\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/executeScriptActions?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9leGVjdXRlU2NyaXB0QWN0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"scriptActions\": [\r\n {\r\n \"name\": \"scriptaction3203\",\r\n \"uri\": \"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh\",\r\n \"roles\": [\r\n \"WorkerNode\"\r\n ]\r\n }\r\n ],\r\n \"persistOnSuccess\": false\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c1280805-fd83-485e-bd66-75eba793063a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "271" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/operationresults/dfb283e7-fc3c-4185-9e79-b932e39ed1da-0-r?api-version=2018-06-01-preview" - ], - "Retry-After": [ - "60" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/dfb283e7-fc3c-4185-9e79-b932e39ed1da-0-r?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "f5273087-99e3-469e-9fae-737909a9497c" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "cf7e1ddb-9e6a-4c61-a651-45ac1d0d4c7f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130134Z:cf7e1ddb-9e6a-4c61-a651-45ac1d0d4c7f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:01:33 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/azureasyncoperations/dfb283e7-fc3c-4185-9e79-b932e39ed1da-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9henVyZWFzeW5jb3BlcmF0aW9ucy9kZmIyODNlNy1mYzNjLTQxODUtOWU3OS1iOTMyZTM5ZWQxZGEtMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "be2bf88d-9cc1-4676-9ece-da7bca71025b" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "9effd283-318e-40d9-8f5c-5ab1eb12da45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130235Z:9effd283-318e-40d9-8f5c-5ab1eb12da45" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:35 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/operationresults/dfb283e7-fc3c-4185-9e79-b932e39ed1da-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9vcGVyYXRpb25yZXN1bHRzL2RmYjI4M2U3LWZjM2MtNDE4NS05ZTc5LWI5MzJlMzllZDFkYS0wLXI/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "931d3749-75d4-478c-96de-012d34409294" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "90e60dbe-ab06-4439-8547-14570960cbf8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130235Z:90e60dbe-ab06-4439-8547-14570960cbf8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:35 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/scriptExecutionHistory?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9zY3JpcHRFeGVjdXRpb25IaXN0b3J5P2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c47e0979-2d28-4c0a-aa8d-035c192a5b40" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "372dffd4-ae0f-441b-a17f-32ec6f1f98b0" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "c3d05c59-a19b-4e57-bc46-f4ecee0bb61d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130236Z:c3d05c59-a19b-4e57-bc46-f4ecee0bb61d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:36 GMT" - ], - "Content-Length": [ - "459" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"scriptExecutionId\": 1158228938731300,\r\n \"name\": \"scriptaction3203\",\r\n \"applicationName\": null,\r\n \"uri\": \"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh\",\r\n \"parameters\": \"\",\r\n \"roles\": [\r\n \"WorkerNode\"\r\n ],\r\n \"startTime\": \"2019-09-02T13:01:36.1589059Z\",\r\n \"endTime\": \"2019-09-02T13:01:46.3848386Z\",\r\n \"status\": \"Succeeded\",\r\n \"operation\": \"PostClusterCreateScriptActionRequest\",\r\n \"executionSummary\": [\r\n {\r\n \"status\": \"COMPLETED\",\r\n \"instanceCount\": 2\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/scriptExecutionHistory/1158228938731300/promote?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9zY3JpcHRFeGVjdXRpb25IaXN0b3J5LzExNTgyMjg5Mzg3MzEzMDAvcHJvbW90ZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "17eb2eae-4a47-4087-95a8-4e2620abcc87" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "55a8dbce-24cb-4413-a8d7-43937d56e061" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "c3aab18b-229e-481d-ab34-0b8406b47d9c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130236Z:c3aab18b-229e-481d-ab34-0b8406b47d9c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:36 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/scriptActions?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9zY3JpcHRBY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "48a7ea45-585e-4331-9d5e-e04575d43dcc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "a9fce4cf-742c-4cb7-9050-3b9effa9e087" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "9c8d04ea-d032-4d1f-bdb1-a2a4f05c9983" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130237Z:9c8d04ea-d032-4d1f-bdb1-a2a4f05c9983" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:37 GMT" - ], - "Content-Length": [ - "204" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"scriptaction3203\",\r\n \"uri\": \"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh\",\r\n \"parameters\": \"\",\r\n \"roles\": [\r\n \"WorkerNode\"\r\n ],\r\n \"applicationName\": null\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/scriptActions?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9zY3JpcHRBY3Rpb25zP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a9d19891-bdf0-464f-8e72-7e29fc16a477" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "140ae71e-cea8-425c-a18f-af1bf64cf537" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "b339f8d9-a3b8-46d3-9526-ee6e6f4b7896" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130239Z:b339f8d9-a3b8-46d3-9526-ee6e6f4b7896" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:39 GMT" - ], - "Content-Length": [ - "12" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138/scriptActions/scriptaction3203?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOC9zY3JpcHRBY3Rpb25zL3NjcmlwdGFjdGlvbjMyMDM/YXBpLXZlcnNpb249MjAxOC0wNi0wMS1wcmV2aWV3", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d606277-043e-40fc-b596-efdf20e5b549" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "dd694cb6-eb30-4fe9-9b58-4c98e26de938" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "529aead4-0a67-47f9-90de-9fa233c08966" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130238Z:529aead4-0a67-47f9-90de-9fa233c08966" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5441/providers/Microsoft.HDInsight/clusters/hdi-ps-test5138?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0NTEzOD9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c643c33f-ef05-49a5-8d3b-13ea9b87f6ed" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/operationresults/1b81a85d-33a1-47ab-a958-81ff6221a4b6-0-r?api-version=2018-06-01-preview" - ], - "Retry-After": [ - "60" - ], - "x-ms-hdi-matched-rule": [ - "ClusterResourcesAndSubResources" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/1b81a85d-33a1-47ab-a958-81ff6221a4b6-0-r?api-version=2018-06-01-preview" - ], - "x-ms-request-id": [ - "09a097a3-2818-4b91-a368-7fec583ae184" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "95713a2c-1402-49f8-8885-f155531991a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130246Z:95713a2c-1402-49f8-8885-f155531991a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:02:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/1b81a85d-33a1-47ab-a958-81ff6221a4b6-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMWI4MWE4NWQtMzNhMS00N2FiLWE5NTgtODFmZjYyMjFhNGI2LTAtcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "AsyncOperationsWithRegionalSuffix" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "ba154484-d17a-465f-bf4f-dd1b962f90a6" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "5be9db0a-1246-45aa-8cdc-eeba316f6781" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130347Z:5be9db0a-1246-45aa-8cdc-eeba316f6781" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:03:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/azureasyncoperations/1b81a85d-33a1-47ab-a958-81ff6221a4b6-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvMWI4MWE4NWQtMzNhMS00N2FiLWE5NTgtODFmZjYyMjFhNGI2LTAtcj9hcGktdmVyc2lvbj0yMDE4LTA2LTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "AsyncOperationsWithRegionalSuffix" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "8f671def-962c-422b-aad9-5a117646d9f4" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "89cc92e5-c1d8-4bb1-a661-31bd233cd1c7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130448Z:89cc92e5-c1d8-4bb1-a661-31bd233cd1c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:04:47 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/West%20US/operationresults/1b81a85d-33a1-47ab-a958-81ff6221a4b6-0-r?api-version=2018-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9XZXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy8xYjgxYTg1ZC0zM2ExLTQ3YWItYTk1OC04MWZmNjIyMWE0YjYtMC1yP2FwaS12ZXJzaW9uPTIwMTgtMDYtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-hdi-matched-rule": [ - "AsyncOperationsWithRegionalSuffix" - ], - "x-ms-hdi-routed-to": [ - "RegionalRp" - ], - "x-ms-request-id": [ - "f725f527-73cf-4d71-a4d3-dc5f4ce585ac" - ], - "x-ms-hdi-served-by": [ - "westus" - ], - "x-ms-correlation-request-id": [ - "62aa9be5-5372-4266-9a7d-6022a49db172" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130448Z:62aa9be5-5372-4266-9a7d-6022a49db172" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:04:47 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test5441?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q1NDQxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7576c3b7-7671-4a20-8bd1-b6b6f60ecbdb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "8f444b4b-9bb7-42c0-9e07-7874c8abef55" - ], - "x-ms-correlation-request-id": [ - "8f444b4b-9bb7-42c0-9e07-7874c8abef55" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130452Z:8f444b4b-9bb7-42c0-9e07-7874c8abef55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:04:52 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "9ddf9228-54b9-4715-bd7b-f8818ad81556" - ], - "x-ms-correlation-request-id": [ - "9ddf9228-54b9-4715-bd7b-f8818ad81556" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130508Z:9ddf9228-54b9-4715-bd7b-f8818ad81556" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:05:07 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "9c758d14-c827-466b-aae5-cfb4b9469307" - ], - "x-ms-correlation-request-id": [ - "9c758d14-c827-466b-aae5-cfb4b9469307" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130523Z:9c758d14-c827-466b-aae5-cfb4b9469307" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:05:23 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "2319cd4c-fe8d-4a7a-a7d5-9bddecf63b5a" - ], - "x-ms-correlation-request-id": [ - "2319cd4c-fe8d-4a7a-a7d5-9bddecf63b5a" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130538Z:2319cd4c-fe8d-4a7a-a7d5-9bddecf63b5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:05:38 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "e284574a-1e59-4109-97df-06b7a57df00a" - ], - "x-ms-correlation-request-id": [ - "e284574a-1e59-4109-97df-06b7a57df00a" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130554Z:e284574a-1e59-4109-97df-06b7a57df00a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:05:53 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "29b8440d-630d-457b-bc0f-3b8b8bcbc386" - ], - "x-ms-correlation-request-id": [ - "29b8440d-630d-457b-bc0f-3b8b8bcbc386" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130609Z:29b8440d-630d-457b-bc0f-3b8b8bcbc386" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:06:08 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-request-id": [ - "31c2d5ae-3981-4ac2-b0db-227dc39777f9" - ], - "x-ms-correlation-request-id": [ - "31c2d5ae-3981-4ac2-b0db-227dc39777f9" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130624Z:31c2d5ae-3981-4ac2-b0db-227dc39777f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:06:24 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "dfcb8e7a-cdc1-4030-8bc2-7b3c97521edc" - ], - "x-ms-correlation-request-id": [ - "dfcb8e7a-cdc1-4030-8bc2-7b3c97521edc" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130640Z:dfcb8e7a-cdc1-4030-8bc2-7b3c97521edc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:06:39 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-request-id": [ - "46cf11f1-c657-44d8-a670-0190cf70927b" - ], - "x-ms-correlation-request-id": [ - "46cf11f1-c657-44d8-a670-0190cf70927b" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130655Z:46cf11f1-c657-44d8-a670-0190cf70927b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:06:55 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "3f86f6ae-277f-48a5-a093-e2aabb950d53" - ], - "x-ms-correlation-request-id": [ - "3f86f6ae-277f-48a5-a093-e2aabb950d53" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130710Z:3f86f6ae-277f-48a5-a093-e2aabb950d53" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:07:10 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDU0NDEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFUwTkRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "de221672-3402-4e54-b25a-ddeb4be15e8d" - ], - "x-ms-correlation-request-id": [ - "de221672-3402-4e54-b25a-ddeb4be15e8d" - ], - "x-ms-routing-request-id": [ - "JAPANEAST:20190902T130710Z:de221672-3402-4e54-b25a-ddeb4be15e8d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 02 Sep 2019 13:07:10 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "Test-ScriptActionRelatedCommands": [ - "hdi-ps-test5138", - "group-ps-test5441", - "storagepstest5155", - "scriptaction3203" + "hdi-ps-test8080", + "group-ps-test715", + "storagepstest6789", + "scriptaction6514" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightSetGatewayCredentialTest/TestSetGatewayCredential.json b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightSetGatewayCredentialTest/TestSetGatewayCredential.json index be3be074a26f..cbd2c9873e6a 100644 --- a/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightSetGatewayCredentialTest/TestSetGatewayCredential.json +++ b/src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightSetGatewayCredentialTest/TestSetGatewayCredential.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test5237?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test9350?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q5MzUwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "e960517b-06db-46c8-88d9-335401ed1403" + "275eaefc-b8ab-42cb-91a2-fc34b27b477d" ], "Accept-Language": [ "en-US" @@ -14,17 +14,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "29" + "32" ] }, - "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "4186c99c-5bd2-4fca-950e-43cb4e153b45" + "cfd8b981-a74e-4bf3-8053-01d1e6fef07f" ], "x-ms-correlation-request-id": [ - "4186c99c-5bd2-4fca-950e-43cb4e153b45" + "cfd8b981-a74e-4bf3-8053-01d1e6fef07f" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T111647Z:4186c99c-5bd2-4fca-950e-43cb4e153b45" + "KOREASOUTH:20230724T015039Z:cfd8b981-a74e-4bf3-8053-01d1e6fef07f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:16:47 GMT" + "Mon, 24 Jul 2023 01:50:38 GMT" ], "Content-Length": [ - "187" + "190" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,16 +63,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237\",\r\n \"name\": \"group-ps-test5237\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9350\",\r\n \"name\": \"group-ps-test9350\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.Storage/storageAccounts/storagepstest9231?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDkyMzE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9350/providers/Microsoft.Storage/storageAccounts/storagepstest896?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDg5Nj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", "RequestHeaders": { "x-ms-client-request-id": [ - "dccf03c0-833c-4591-90f0-422ea44e782f" + "8f28eb98-704b-4c37-8280-dec1ca5b8558" ], "Accept-Language": [ "en-US" @@ -80,17 +80,17 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "101" + "104" ] }, - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"East US\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"Japan East\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,13 +99,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/8364629c-6208-4b45-9e97-89e704bf970c?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/581cd44c-3aee-4436-acb3-4ce6e5b58971?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "8364629c-6208-4b45-9e97-89e704bf970c" + "581cd44c-3aee-4436-acb3-4ce6e5b58971" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,2090 +114,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "afb6efe5-95e6-4ee1-9015-34fd88774795" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111651Z:afb6efe5-95e6-4ee1-9015-34fd88774795" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:16:50 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/eastus/asyncoperations/8364629c-6208-4b45-9e97-89e704bf970c?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy84MzY0NjI5Yy02MjA4LTRiNDUtOWU5Ny04OWU3MDRiZjk3MGM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "231a6ac6-ccdc-49b9-8c90-ffc1e09bf83f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "288f21ac-0f7d-4d4e-b78a-fc2dd2269f8d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111708Z:288f21ac-0f7d-4d4e-b78a-fc2dd2269f8d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:17:07 GMT" - ], - "Content-Length": [ - "1384" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.Storage/storageAccounts/storagepstest9231\",\r\n \"name\": \"storagepstest9231\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T11:16:49.2657391Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-04-06T11:16:49.2657391Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-04-06T11:16:48.937591Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9231.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9231.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9231.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest9231.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest9231-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest9231-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest9231-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.Storage/storageAccounts/storagepstest9231/listKeys?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDkyMzEvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "50ad7026-ea6a-4b45-893c-35f09edb924a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c5eeb70b-9ff8-4709-85d3-8043b6ae6b0b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "0fe7a282-e77c-46ea-916e-19a228758bce" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111708Z:0fe7a282-e77c-46ea-916e-19a228758bce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:17:08 GMT" - ], - "Content-Length": [ - "288" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"4/+ZAVqvjlGg8sPMxUmstieaGmzkw0hd88nFMs+IWnWdo+r8KuCCIX7urDOpMjYTNfR5MhA8LDzE+ASt75jUvA==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"2+cglPLCvolixgGHQGOkz/vqsvz8zm7SgeAMTRgXEo/YPr76bhYuWWNlwDpu85rJANPD0Uqeswit+AStrMGTag==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/billingSpecs?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYmlsbGluZ1NwZWNzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "69eb6bd0-1bd9-4d98-b32a-0aad0f33337f" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e6d49b38-8c66-458d-b66d-76ea64976693" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111709Z:e6d49b38-8c66-458d-b66d-76ea64976693" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:17:09 GMT" - ], - "Content-Length": [ - "105467" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"vmSizes\": [\r\n \"A5\",\r\n \"A6\",\r\n \"A7\",\r\n \"STANDARD_A1_V2\",\r\n \"STANDARD_A2_V2\",\r\n \"STANDARD_A2m_V2\",\r\n \"STANDARD_A4_V2\",\r\n \"STANDARD_A4m_V2\",\r\n \"STANDARD_A5\",\r\n \"STANDARD_A6\",\r\n \"STANDARD_A7\",\r\n \"STANDARD_A8\",\r\n \"STANDARD_A8_V2\",\r\n \"STANDARD_A8m_V2\",\r\n \"STANDARD_D1\",\r\n \"STANDARD_D1_V2\",\r\n \"STANDARD_D11\",\r\n \"STANDARD_D11_V2\",\r\n \"STANDARD_D12\",\r\n \"STANDARD_D12_V2\",\r\n \"STANDARD_D13\",\r\n \"STANDARD_D13_V2\",\r\n \"STANDARD_D14\",\r\n \"STANDARD_D14_V2\",\r\n \"STANDARD_D15_v2\",\r\n \"STANDARD_D16A_V4\",\r\n \"STANDARD_D2\",\r\n \"STANDARD_D2_V2\",\r\n \"STANDARD_D2A_V4\",\r\n \"STANDARD_D3\",\r\n \"STANDARD_D3_V2\",\r\n \"STANDARD_D32A_V4\",\r\n \"STANDARD_D4\",\r\n \"STANDARD_D4_V2\",\r\n \"STANDARD_D48A_V4\",\r\n \"STANDARD_D4A_V4\",\r\n \"STANDARD_D5_V2\",\r\n \"STANDARD_D64A_V4\",\r\n \"STANDARD_D8A_V4\",\r\n \"STANDARD_D96A_V4\",\r\n \"STANDARD_DS1_V2\",\r\n \"STANDARD_DS11_V2\",\r\n \"STANDARD_DS12_V2\",\r\n \"STANDARD_DS13_V2\",\r\n \"STANDARD_DS14_V2\",\r\n \"STANDARD_DS2_V2\",\r\n \"STANDARD_DS3_V2\",\r\n \"STANDARD_DS4_V2\",\r\n \"STANDARD_DS5_V2\",\r\n \"STANDARD_E16_V3\",\r\n \"STANDARD_E16A_V4\",\r\n \"STANDARD_E2_V3\",\r\n \"STANDARD_E20_V3\",\r\n \"STANDARD_E20A_V4\",\r\n \"STANDARD_E20S_V3\",\r\n \"STANDARD_E2A_V4\",\r\n \"STANDARD_E2S_V3\",\r\n \"STANDARD_E32_V3\",\r\n \"STANDARD_E32A_V4\",\r\n \"STANDARD_E4_V3\",\r\n \"STANDARD_E48A_V4\",\r\n \"STANDARD_E4A_V4\",\r\n \"STANDARD_E64_V3\",\r\n \"STANDARD_E64A_V4\",\r\n \"STANDARD_E64I_V3\",\r\n \"STANDARD_E64IS_V3\",\r\n \"STANDARD_E8_V3\",\r\n \"STANDARD_E8A_V4\",\r\n \"STANDARD_E96A_V4\",\r\n \"STANDARD_F1\",\r\n \"STANDARD_F16\",\r\n \"STANDARD_F2\",\r\n \"STANDARD_F4\",\r\n \"STANDARD_F8\",\r\n \"STANDARD_GS1\",\r\n \"STANDARD_GS2\",\r\n \"STANDARD_GS3\",\r\n \"STANDARD_GS4\",\r\n \"STANDARD_GS5\"\r\n ],\r\n \"vmSizesWithEncryptionAtHost\": [\r\n \"Standard_D16a_v4\",\r\n \"Standard_D2a_v4\",\r\n \"Standard_D32a_v4\",\r\n \"Standard_D48a_v4\",\r\n \"Standard_D4a_v4\",\r\n \"Standard_D64a_v4\",\r\n \"Standard_D8a_v4\",\r\n \"Standard_D96a_v4\",\r\n \"Standard_DS11_v2\",\r\n \"Standard_DS12_v2\",\r\n \"Standard_DS13_v2\",\r\n \"Standard_DS14_v2\",\r\n \"Standard_DS1_v2\",\r\n \"Standard_DS2_v2\",\r\n \"Standard_DS3_v2\",\r\n \"Standard_DS4_v2\",\r\n \"Standard_DS5_v2\",\r\n \"Standard_E16a_v4\",\r\n \"Standard_E20a_v4\",\r\n \"Standard_E20s_v3\",\r\n \"Standard_E2a_v4\",\r\n \"Standard_E2s_v3\",\r\n \"Standard_E32a_v4\",\r\n \"Standard_E48a_v4\",\r\n \"Standard_E4a_v4\",\r\n \"Standard_E64a_v4\",\r\n \"Standard_E64is_v3\",\r\n \"Standard_E8a_v4\",\r\n \"Standard_E96a_v4\"\r\n ],\r\n \"vmSizeFilters\": [\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRALARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"EXTRASMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"LARGE\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"MEDIUM\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"SMALL\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Central India\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS11_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS12_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS13_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS14_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS5_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"Australia SouthEast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_GS5\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D15_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64IS_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A1_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"4.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A5\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A6\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A7\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F1\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F16\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"EdgeNodeRole\",\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_F8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8M_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64I_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\",\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2A_V4\"\r\n ],\r\n \"espApplied\": \"true\",\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E48A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\",\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E64A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Sandbox\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Exclude\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"1.6\",\r\n \"2.1\",\r\n \"3.0\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E96A_V4\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"3.1\",\r\n \"3.2\",\r\n \"3.3\",\r\n \"3.4\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A8\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E20S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Include\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"*\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E2S_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": \"true\"\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Spark\",\r\n \"HBase\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"Storm\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Kafka\",\r\n \"Storm\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\",\r\n \"Storm\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D5_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_DS4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E16_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E32_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Recommend\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"Kafka\",\r\n \"MLService\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\",\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"LLAP\",\r\n \"InteractiveHive\",\r\n \"Storm\",\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HIBRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A2_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"ZookeeperRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_A4_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"HBase\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D12_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D13_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"LLAP\",\r\n \"InteractiveHive\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D14_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Storm\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_D3_V2\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"HBase\",\r\n \"MLService\",\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"*\"\r\n ],\r\n \"nodeTypes\": [\r\n \"EdgeNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E4_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Hadoop\",\r\n \"MLService\",\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"WorkerNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Spark\"\r\n ],\r\n \"nodeTypes\": [\r\n \"HeadNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n },\r\n {\r\n \"filterMode\": \"Default\",\r\n \"regions\": [\r\n \"*\"\r\n ],\r\n \"clusterFlavors\": [\r\n \"Kafka\"\r\n ],\r\n \"nodeTypes\": [\r\n \"KafkaManagementNodeRole\"\r\n ],\r\n \"clusterVersions\": [\r\n \"*\"\r\n ],\r\n \"osType\": [\r\n \"Linux\"\r\n ],\r\n \"vmSizes\": [\r\n \"STANDARD_E8_V3\"\r\n ],\r\n \"espApplied\": null,\r\n \"computeIsolationSupported\": null\r\n }\r\n ],\r\n \"vmSizeProperties\": [\r\n {\r\n \"name\": \"A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"EXTRALARGE\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraLarge (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"EXTRASMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"ExtraSmall (1 cores, 768 MB)\",\r\n \"maxDataDiskCount\": 1,\r\n \"memoryInMb\": 768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"LARGE\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Large (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"MEDIUM\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Medium (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"SMALL\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Small (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_D1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D11\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D12\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D12_v2 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D13\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D14\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_DS1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS1_v2 (1 cores, 3584 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 3584,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 7168,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS11_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS11_v2 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS12_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS12 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS13_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS13_v2 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS14_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS14_v2 (16 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS2_v2 (2 cores, 7168 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 7168,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 14336,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS3_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS3_v2 (4 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 28672,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS4_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS4_v2 (8 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_DS5_V2\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_DS5_v2 (16 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS1\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS1 (2 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 57344,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS2 (4 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 114688,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS3 (8 cores, 114688 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 114688,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 229376,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS4 (16 cores, 229376 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 229376,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 458752,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_GS5\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"Standard_GS5 (32 cores, 458752 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 458752,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 917504,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_D15_V2\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D15_v2 (20 cores, 143360 MB)\",\r\n \"maxDataDiskCount\": 40,\r\n \"memoryInMb\": 143360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1024000,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A1_V2\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A1_V2 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 2,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 10240,\r\n \"webWorkerResourceDiskSizeInMb\": 10240\r\n },\r\n {\r\n \"name\": \"STANDARD_A2_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2_V2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4_V2 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8_V2 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_A2M_V2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A2m_V2 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 20480,\r\n \"webWorkerResourceDiskSizeInMb\": 20480\r\n },\r\n {\r\n \"name\": \"STANDARD_A4M_V2\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A4m_V2 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 40960,\r\n \"webWorkerResourceDiskSizeInMb\": 40960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8M_V2\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8m_V2 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 81920,\r\n \"webWorkerResourceDiskSizeInMb\": 81920\r\n },\r\n {\r\n \"name\": \"STANDARD_E16_V3\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E16_v3 (16 cores, 137439 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 137439,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E2_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E20_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E20S_V3\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E20s_v3 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 327680,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E2S_V3\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E2s_v3 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 34360,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E32_V3\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E32_v3 (32 cores, 274878 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 274878,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E4_V3\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E4_v3 (4 cores, 34360 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 34360,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64I_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E64i_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E8_V3\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_E8_v3 (8 cores, 68720 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 68720,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_E64IS_V3\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Premium_LRS\",\r\n \"label\": \"STANDARD_E64is_v3 (64 cores, 463856 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 463856,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": false,\r\n \"virtualMachineResourceDiskSizeInMb\": 927713,\r\n \"webWorkerResourceDiskSizeInMb\": 0\r\n },\r\n {\r\n \"name\": \"STANDARD_A5\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A5 (2 cores, 14336 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 14336,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 138240,\r\n \"webWorkerResourceDiskSizeInMb\": 501760\r\n },\r\n {\r\n \"name\": \"STANDARD_A6\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A6 (4 cores, 28672 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 28672,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 291840,\r\n \"webWorkerResourceDiskSizeInMb\": 1024000\r\n },\r\n {\r\n \"name\": \"STANDARD_A7\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A7 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 619520,\r\n \"webWorkerResourceDiskSizeInMb\": 2088960\r\n },\r\n {\r\n \"name\": \"STANDARD_A8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_A8 (8 cores, 57344 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 57344,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 391828,\r\n \"webWorkerResourceDiskSizeInMb\": 1861268\r\n },\r\n {\r\n \"name\": \"STANDARD_F1\",\r\n \"cores\": 1,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F1 (1 cores, 2048 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 2048,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 16384,\r\n \"webWorkerResourceDiskSizeInMb\": 16384\r\n },\r\n {\r\n \"name\": \"STANDARD_F16\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F16 (16 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 64,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 262144,\r\n \"webWorkerResourceDiskSizeInMb\": 262144\r\n },\r\n {\r\n \"name\": \"STANDARD_F2\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F2 (2 cores, 4096 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 4096,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 32768,\r\n \"webWorkerResourceDiskSizeInMb\": 32768\r\n },\r\n {\r\n \"name\": \"STANDARD_F4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F4 (4 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 65536,\r\n \"webWorkerResourceDiskSizeInMb\": 65536\r\n },\r\n {\r\n \"name\": \"STANDARD_F8\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"STANDARD_F8 (8 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 131072,\r\n \"webWorkerResourceDiskSizeInMb\": 131072\r\n },\r\n {\r\n \"name\": \"STANDARD_D16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D16a_v4 (16 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_D2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D2a_v4 (2 cores, 8192 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 8192,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_D32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D32a_v4 (32 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_D48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D48a_v4 (48 cores, 196608 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 196608,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_D4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D4a_v4 (4 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_D64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D64a_v4 (64 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_D8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D8a_v4 (8 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_D96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_D96a_v4 (96 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n },\r\n {\r\n \"name\": \"STANDARD_E16A_V4\",\r\n \"cores\": 16,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E16a_v4 (16 cores, 131072 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 131072,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 409600,\r\n \"webWorkerResourceDiskSizeInMb\": 409600\r\n },\r\n {\r\n \"name\": \"STANDARD_E20A_V4\",\r\n \"cores\": 20,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E20a_v4 (20 cores, 163840 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 163840,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 512000,\r\n \"webWorkerResourceDiskSizeInMb\": 512000\r\n },\r\n {\r\n \"name\": \"STANDARD_E2A_V4\",\r\n \"cores\": 2,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E2a_v4 (2 cores, 16384 MB)\",\r\n \"maxDataDiskCount\": 4,\r\n \"memoryInMb\": 16384,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 51200,\r\n \"webWorkerResourceDiskSizeInMb\": 51200\r\n },\r\n {\r\n \"name\": \"STANDARD_E32A_V4\",\r\n \"cores\": 32,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E32a_v4 (32 cores, 262144 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 262144,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 819200,\r\n \"webWorkerResourceDiskSizeInMb\": 819200\r\n },\r\n {\r\n \"name\": \"STANDARD_E48A_V4\",\r\n \"cores\": 48,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E48a_v4 (48 cores, 393216 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 393216,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1228800,\r\n \"webWorkerResourceDiskSizeInMb\": 1228800\r\n },\r\n {\r\n \"name\": \"STANDARD_E4A_V4\",\r\n \"cores\": 4,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E4a_v4 (4 cores, 32768 MB)\",\r\n \"maxDataDiskCount\": 8,\r\n \"memoryInMb\": 32768,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 102400,\r\n \"webWorkerResourceDiskSizeInMb\": 102400\r\n },\r\n {\r\n \"name\": \"STANDARD_E64A_V4\",\r\n \"cores\": 64,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E64a_v4 (64 cores, 524288 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 524288,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 1638400,\r\n \"webWorkerResourceDiskSizeInMb\": 1638400\r\n },\r\n {\r\n \"name\": \"STANDARD_E8A_V4\",\r\n \"cores\": 8,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E8a_v4 (8 cores, 65536 MB)\",\r\n \"maxDataDiskCount\": 16,\r\n \"memoryInMb\": 65536,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 204800,\r\n \"webWorkerResourceDiskSizeInMb\": 204800\r\n },\r\n {\r\n \"name\": \"STANDARD_E96A_V4\",\r\n \"cores\": 96,\r\n \"dataDiskStorageTier\": \"Standard_LRS\",\r\n \"label\": \"Standard_E96a_v4 (96 cores, 688128 MB)\",\r\n \"maxDataDiskCount\": 32,\r\n \"memoryInMb\": 688128,\r\n \"supportedByVirtualMachines\": false,\r\n \"supportedByWebWorkerRoles\": true,\r\n \"virtualMachineResourceDiskSizeInMb\": 2457600,\r\n \"webWorkerResourceDiskSizeInMb\": 2457600\r\n }\r\n ],\r\n \"billingResources\": [\r\n {\r\n \"region\": \"East US\",\r\n \"billingMeters\": [],\r\n \"diskBillingMeters\": []\r\n },\r\n {\r\n \"region\": \"default\",\r\n \"billingMeters\": [\r\n {\r\n \"meterParameter\": \"default\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Kafka\",\r\n \"meter\": \"26a4647c-1308-4c70-884d-6608183e8aa6\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Premium\",\r\n \"meter\": \"a20f0805-7d55-4674-899f-10907b9bbe7c\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"RServer\",\r\n \"meter\": \"e84b8971-c5cf-4da9-be6b-ad923445afb5\",\r\n \"unit\": \"CoreHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A1\",\r\n \"meter\": \"0c6206c1-0315-42b5-9dfe-5a97cc653f9a\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A10\",\r\n \"meter\": \"5b0fc766-2ba8-4947-8d27-5f2988a24ef1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A11\",\r\n \"meter\": \"90a20b8b-de68-4f1e-9f08-1bc70aa170e1\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A2\",\r\n \"meter\": \"848e5302-c41a-4431-8b57-1ebd3603c7d8\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A3\",\r\n \"meter\": \"fa9dc70f-f562-44af-b965-b4576aefed95\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A4\",\r\n \"meter\": \"558f3e41-b808-45e3-98a9-ab4206ddd016\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A5\",\r\n \"meter\": \"de8b5688-21a0-4bb2-812f-8962b0f63e12\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A6\",\r\n \"meter\": \"906f5413-d2cd-4035-b54d-6f2622d5a0be\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A7\",\r\n \"meter\": \"77d94e56-0590-47e7-953b-17feb313be82\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A8\",\r\n \"meter\": \"eb02fab1-7a7b-40e0-a4b5-5a2bdc307e71\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_A9\",\r\n \"meter\": \"558a3485-9069-436d-872e-fcd680956c45\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D15_V2\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_D5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS1_V2\",\r\n \"meter\": \"437025b7-d995-4efe-8b98-b48d0875d72e\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS11_V2\",\r\n \"meter\": \"1b90c524-7e82-4db4-8c41-406874dc197f\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS12_V2\",\r\n \"meter\": \"95e9dcdd-4a5a-46b8-ac41-593121295732\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS13_V2\",\r\n \"meter\": \"25e78bdc-41af-43e0-ac56-aeba945f6ba7\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS14_V2\",\r\n \"meter\": \"aa0a44ba-fdec-4c16-9b16-44a99b5b473c\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS2_V2\",\r\n \"meter\": \"d2814d47-36d4-4e71-b2be-9140c3d09f28\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS3_V2\",\r\n \"meter\": \"99c83182-0ebc-4eba-99a6-80e0c0fa572b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS4_V2\",\r\n \"meter\": \"1b962c90-79f4-4c53-96a4-d69db802e0a2\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_DS5_V2\",\r\n \"meter\": \"a017bece-ced2-4a16-9939-993d40b086fd\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F32s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F64s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_F72s_V2\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_G5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS1\",\r\n \"meter\": \"2abb385b-e987-4155-ba96-23a34f3bb7df\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS2\",\r\n \"meter\": \"5431c933-cb1e-400d-ab8d-ef18b5297dc4\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS3\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS4\",\r\n \"meter\": \"0a7ac46a-f068-4da0-b497-d551898515e3\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_GS5\",\r\n \"meter\": \"2a00fd31-1c03-49e3-ad32-928479d7a925\",\r\n \"unit\": \"VMHours\"\r\n },\r\n {\r\n \"meterParameter\": \"Standard_NC24\",\r\n \"meter\": \"e622c817-bae1-49eb-880f-63b0b362de8b\",\r\n \"unit\": \"VMHours\"\r\n }\r\n ],\r\n \"diskBillingMeters\": [\r\n {\r\n \"diskRpMeter\": \"82CD70AB-1AEE-4B30-BC04-8B71E1204DBC\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"40551b4c-e8be-48ed-b70b-f8d25c7de724\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"211e620c-ebcf-4db5-a7fd-996abebe9546\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"45ff39f6-c7a6-40fb-a124-cf5b280ba092\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f8c187bb-5a47-46ae-b874-f186d207fff4\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"923978e1-fd3f-4bd5-a798-f4b533057e46\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"d3824379-dc7e-472b-9e67-3f4a7eadc05b\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"c01a1eed-b19a-4aad-bb83-8d62cdc29778\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"11278850-f161-4a6e-86ef-d650a29fb62f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"6417d428-fe3b-4270-951d-5a67e6411a8f\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n },\r\n {\r\n \"diskRpMeter\": \"f14382b0-1838-48e9-9314-c7b6eababc81\",\r\n \"sku\": \"All\",\r\n \"tier\": \"Standard\"\r\n }\r\n ]\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "PUT", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "2142" - ] - }, - "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"default\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {},\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n },\r\n \"core-site\": {}\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_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_E8_V3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"STANDARD_A2_V2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\",\r\n \"password\": \"YourPw!00953\"\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9231.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"hdi-ps-test3375\",\r\n \"key\": \"4/+ZAVqvjlGg8sPMxUmstieaGmzkw0hd88nFMs+IWnWdo+r8KuCCIX7urDOpMjYTNfR5MhA8LDzE+ASt75jUvA==\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.Storage/storageAccounts/storagepstest9231\"\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\"\r\n }\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "ETag": [ - "\"04862a5b-dd7d-4203-8fab-5047b1e99aba\"" - ], - "x-ms-hdi-clusteruri": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375?api-version=2021-06-01" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "90a72bb4-59d6-4a2b-a330-8c8ccba2d12d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "bbeba258-94b8-4d7a-9a6e-df0dea8a5b91" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111715Z:bbeba258-94b8-4d7a-9a6e-df0dea8a5b91" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:17:14 GMT" - ], - "Content-Length": [ - "1955" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375\",\r\n \"name\": \"hdi-ps-test3375\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04862a5b-dd7d-4203-8fab-5047b1e99aba\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ba5acbad4f0a4bfe82f929cc6ccf314a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2023-04-06T11:17:14.44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9231.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.Storage/storageAccounts/storagepstest9231\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3375\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5413f37f-1ac5-4c79-8681-a0fd7278cd4d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "24bbf43e-da35-488c-b089-68c6be79a7d8" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111745Z:24bbf43e-da35-488c-b089-68c6be79a7d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:17:45 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a242f5d5-89b5-4c00-9abd-c038dff314f7" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "cd2ed8ce-2a7b-46cd-86ff-b885f97e87c3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111816Z:cd2ed8ce-2a7b-46cd-86ff-b885f97e87c3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:18:15 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "407cc00a-9639-4081-875a-563cc9bc0709" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "832bfeb3-a3a2-4f01-b957-e2ac168f6a0f" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111846Z:832bfeb3-a3a2-4f01-b957-e2ac168f6a0f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:18:46 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5fc4ae59-f8d3-4a13-aaaf-b05e0bddb697" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "e473a942-bcee-4ffb-9fa6-5ae7b79927c6" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111917Z:e473a942-bcee-4ffb-9fa6-5ae7b79927c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:19:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a68df1d1-973a-4546-b8d8-4ce065edbc70" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0f8deb8c-875a-46d1-8093-d3ae6adc775b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T111948Z:0f8deb8c-875a-46d1-8093-d3ae6adc775b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:19:47 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d9307305-c5eb-40c6-bac1-7ea83be8b6d8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "32eef174-6177-47c4-b74d-71377e32b7ff" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112018Z:32eef174-6177-47c4-b74d-71377e32b7ff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:20:17 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2ccd8ce0-3e46-431e-b34a-86e1b1b0a5ad" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "f67fb8ab-ed1e-40ea-b972-43bea58a6301" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112049Z:f67fb8ab-ed1e-40ea-b972-43bea58a6301" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:20:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "255eafd0-4e4a-47fb-92ec-aa124162b2d5" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8968a032-9430-4bc2-99d6-de645f5ef8ac" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112120Z:8968a032-9430-4bc2-99d6-de645f5ef8ac" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:21:19 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "72f987d6-ee4b-45a0-b8ac-964fe30ee006" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3ccc5190-ca7a-42c6-bc73-6622eee3e060" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112150Z:3ccc5190-ca7a-42c6-bc73-6622eee3e060" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:21:49 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e635142e-6120-458c-87e8-18dc8e04bdd6" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "59bf3d63-05e6-4acb-8565-f73ae07faf3b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112221Z:59bf3d63-05e6-4acb-8565-f73ae07faf3b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:22:20 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "48f4e10c-3825-475a-974e-c2539721bbd4" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4578cdeb-cb93-47a2-9daf-9bbe5ec0c326" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112251Z:4578cdeb-cb93-47a2-9daf-9bbe5ec0c326" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:22:51 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "27e721d1-e754-4090-a084-9e6d11e8d9e1" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "89bc79c5-f71d-448b-b3c7-29b1c40747f4" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112323Z:89bc79c5-f71d-448b-b3c7-29b1c40747f4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:23:22 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c75e6b8c-424e-4d47-a32c-538f8f8ec9b2" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "6090f4f7-1e90-482d-80fa-c69436331876" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112353Z:6090f4f7-1e90-482d-80fa-c69436331876" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:23:53 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "662eda47-ae81-48de-9a0b-6a9f5cd880e8" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "0c24f055-dddb-4e5c-820b-d0ee976f82de" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112424Z:0c24f055-dddb-4e5c-820b-d0ee976f82de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:24:23 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4669a4c0-9009-4976-b50c-65b61f82512c" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "836ab750-a46a-42bd-8b04-e084dc0ed574" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112455Z:836ab750-a46a-42bd-8b04-e084dc0ed574" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:24:54 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c075f0fd-330d-4da9-93a7-1c685c926afe" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "94b97bdf-43cc-4a36-861b-ab7c38590d15" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112525Z:94b97bdf-43cc-4a36-861b-ab7c38590d15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:25:25 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "526dc27b-d218-46dd-a7b5-251b3c6de3fe" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "8de41be1-9e26-4340-a02c-215cd38cf6ca" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112556Z:8de41be1-9e26-4340-a02c-215cd38cf6ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:25:56 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "143cb260-b41d-4a27-a106-9f94e3612767" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "b1118a63-f5fa-4dbc-a49c-349e0633662c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112627Z:b1118a63-f5fa-4dbc-a49c-349e0633662c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:26:26 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fbc8e1a2-0e8b-4fd5-ada3-92666a19cc80" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "596e9544-5129-4da5-8e8f-1ad0560f97dc" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112657Z:596e9544-5129-4da5-8e8f-1ad0560f97dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:26:57 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8df63619-82dc-4845-b3b2-6d1e8072f041" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "225bd319-a253-4bc8-878b-1de01cc78fbf" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112728Z:225bd319-a253-4bc8-878b-1de01cc78fbf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:27:28 GMT" - ], - "Content-Length": [ - "23" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/create?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9jcmVhdGU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4ea90258-6c8d-4126-9b4c-d7d79e1a3bec" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "4452c5ec-efee-472d-90c7-abe2b45aeaa3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112759Z:4452c5ec-efee-472d-90c7-abe2b45aeaa3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:27:58 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37bac9ac-5548-47ff-ab8f-b279aaa37e4e" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "35ba5ba8-272c-408c-ae57-6f63d0a7c57b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "09fcbff7-1b0f-4f16-8251-e63dcd8affe3" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112759Z:09fcbff7-1b0f-4f16-8251-e63dcd8affe3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:27:59 GMT" - ], - "Content-Length": [ - "2173" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375\",\r\n \"name\": \"hdi-ps-test3375\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04862a5b-dd7d-4203-8fab-5047b1e99aba\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ba5acbad4f0a4bfe82f929cc6ccf314a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T11:17:14.44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3375-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3375.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9231.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.Storage/storageAccounts/storagepstest9231\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3375\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/updateGatewaySettings?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS91cGRhdGVHYXRld2F5U2V0dGluZ3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59620b4b-2ccd-4a6e-a2b1-81635d1c32f1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "137" - ] - }, - "RequestBody": "{\r\n \"restAuthCredential.isEnabled\": true,\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n}", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/operationresults/d4c43753-9f2d-4541-8b42-82bb3811e899-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/d4c43753-9f2d-4541-8b42-82bb3811e899-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "40f73259-6cd3-4eb4-be61-102afcdc736b" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "adc079ac-3847-4181-b1d6-2aae030a7cf5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112801Z:adc079ac-3847-4181-b1d6-2aae030a7cf5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:28:00 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/azureasyncoperations/d4c43753-9f2d-4541-8b42-82bb3811e899-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9henVyZWFzeW5jb3BlcmF0aW9ucy9kNGM0Mzc1My05ZjJkLTQ1NDEtOGI0Mi04MmJiMzgxMWU4OTktMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59620b4b-2ccd-4a6e-a2b1-81635d1c32f1" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d466aeb1-4ef0-4bf3-a1e4-89328c1be327" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "7200b5dd-9160-4882-bdbe-eeba0a55c8eb" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112901Z:7200b5dd-9160-4882-bdbe-eeba0a55c8eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:29:00 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/operationresults/d4c43753-9f2d-4541-8b42-82bb3811e899-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9vcGVyYXRpb25yZXN1bHRzL2Q0YzQzNzUzLTlmMmQtNDU0MS04YjQyLTgyYmIzODExZTg5OS0wLXI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59620b4b-2ccd-4a6e-a2b1-81635d1c32f1" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "60285d77-5d90-4bf8-95d5-cc2d7356a16a" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "3016916d-ff10-4aa1-bd20-a5a3757b8d99" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112902Z:3016916d-ff10-4aa1-bd20-a5a3757b8d99" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:29:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375/getGatewaySettings?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NS9nZXRHYXRld2F5U2V0dGluZ3M/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", - "RequestMethod": "POST", - "RequestHeaders": { - "x-ms-client-request-id": [ - "59620b4b-2ccd-4a6e-a2b1-81635d1c32f1" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3605f796-5667-4580-8ec2-f5e8a75e916d" - ], - "x-ms-hdi-served-by": [ - "eastus" - ], - "x-ms-correlation-request-id": [ - "50482d2f-23e7-4d30-a8b6-d9a6db45ae3c" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112902Z:50482d2f-23e7-4d30-a8b6-d9a6db45ae3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:29:01 GMT" - ], - "Content-Length": [ - "122" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin\",\r\n \"restAuthCredential.password\": \"YourPw!00953\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/clusters?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", - "RequestMethod": "GET", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f3a8bb87-b34d-4a1e-9bdd-3be6b7effd0f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-original-request-ids": [ - "78ed76ad-480b-4cd1-900d-63b5e9d71424", - "61c386c2-c538-4ab6-9341-cdb017580c81", - "1d475407-21ce-410a-a34a-3e30e0c5c105", - "13a3bbc0-d6e8-4503-a8a1-1dea91993b7e", - "d15d181f-8770-4047-88c6-1499f4c589a0", - "f5bef2bd-75fb-468a-b2d4-a220973e0646", - "ff8c7086-18ac-48ea-aef9-49da8e648b50", - "b59f5e02-ef41-4764-9a24-f5a38efaf7b5", - "c75156a0-c2c7-40e1-b348-61417d86b6f2", - "4f3e3950-c2dd-4e9b-aa87-a662b68dee42", - "7f9c1256-4eff-45ab-99bf-6c2ec6d88b75", - "613f221a-aeb3-4b47-b95b-e69dce83daa4", - "5f50f680-81b8-4e5f-96d8-46d5580954d5", - "4ce05797-4ae2-41a9-a288-d03d9d44de01" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "91541b1b-ab28-4001-aeb0-b04c1c3b9326" - ], - "x-ms-correlation-request-id": [ - "91541b1b-ab28-4001-aeb0-b04c1c3b9326" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T112909Z:91541b1b-ab28-4001-aeb0-b04c1c3b9326" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:29:09 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "280292" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/karthik-eastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Canada East\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.HDInsight/clusters/xinli1debugipsec\",\r\n \"name\": \"xinli1debugipsec\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East Asia\",\r\n \"etag\": \"263aad4e-6765-495a-9ba6-c5edab28ef5a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a836521cad934fc89c517a90ae892a7a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-27T07:38:27.293\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1debugipsec.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1debugiphdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/xinli1debug/providers/Microsoft.Storage/storageAccounts/xinli1debugiphdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1debugipsec-2023-03-27t07-37-02-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.HDInsight/clusters/test-denyinbound\",\r\n \"name\": \"test-denyinbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Australia East\",\r\n \"etag\": \"17ac0a46-8e67-414f-bb3c-ca5c4bd35712\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b6d2976b47ed470d9b5f11bb7d81db2b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-29T11:13:22.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-denyinbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testdenyinbouhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-test-deny-all-inbound/providers/Microsoft.Storage/storageAccounts/testdenyinbouhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-denyinbound-2023-03-29t11-04-30-897z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-outbount-cvrio4\",\r\n \"name\": \"hadoop-outbount-cvrio4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"b577a3fd-3386-4a5e-9149-a8ae7a809d12\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6fcf0aa36cce419da9a9e7222cf4533c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-depend-resource-DONT-DELETE/providers/Microsoft.Network/virtualNetworks/hdi-vnet/subnets/hdi-subnet\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T12:55:12.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"192.168.0.12\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-outbount-cvrio4-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"192.168.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-outbount-cvrio4-2023-02-27t12-53-32-920z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.HDInsight/clusters/hadoop-sentinel\",\r\n \"name\": \"hadoop-sentinel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"84ed899b-d6f7-481e-9976-f5859cc7ddce\",\r\n \"tags\": {\r\n \"SENTINAL\": \"DONTDELETE\"\r\n },\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"053fc6fe2d3a4196b4ed8c5845b6a297\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-02T13:28:33.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hadoop-sentinel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisentinelhahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/cunfeng-hdi-sentinel/providers/Microsoft.Storage/storageAccounts/hdisentinelhahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hadoop-sentinel-2023-01-02t13-26-06-000z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdptestcluster1\",\r\n \"name\": \"hdptestcluster1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West Europe\",\r\n \"etag\": \"6294e7eb-d942-4da0-bb22-69ac8aa8ab10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"711698d20f7d4e559b55785590fdc382\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T20:31:14.29\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdptestcluster1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdptestclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdptestclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdptestcluster1-2023-02-16t20-29-01-114z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.HDInsight/clusters/srinihadooptest\",\r\n \"name\": \"srinihadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"6799f8b5-f6b7-490b-bfce-c8e96c0a69d8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4a97d33a74354cb8b505314852fd67dc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T06:09:38.023\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SriniHadoopTest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"srinihadooptehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-limbalkars/providers/Microsoft.Storage/storageAccounts/srinihadooptehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"srinihadooptest-2023-04-03t06-06-59-470z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumanatahivetest\",\r\n \"name\": \"sumanatahivetest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"e0ab8abe-ea66-4786-a963-b8bd59cd68f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f0752c11287947f6ad407dc35ef9f0a3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d14_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T10:25:01.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 42\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumanatahivetest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumanatahivetest-2023-02-23t10-13-41-228z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantahadooptest\",\r\n \"name\": \"sumantahadooptest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"3e2ef5dc-b06c-49f1-a0f5-1064c87c2904\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"a3a347bee65443c5b4ffc02c295dca36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 2,\r\n \"maxInstanceCount\": 4\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T06:32:06.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 136\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantahadooptest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantahadooptestcluste-2023-03-24t06-28-54-846z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.HDInsight/clusters/sumantatestsparkcluster\",\r\n \"name\": \"sumantatestsparkcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"eadbad16-940e-4ba1-8d10-e35b31b3038c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"7571860162e244c9ac5f369c6a6182bc\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-26T02:19:04.01\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sumantatestsparkcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sumantateststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-pramaniks/providers/Microsoft.Storage/storageAccounts/sumantateststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sumantatestsparkcluster-2023-02-26t02-15-03-734z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryahadoop\",\r\n \"name\": \"suryahadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"efc66412-384f-478b-98b8-b9c5370b1a9e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5b6b32d28d9e4bcf81e16dcceb9d7c90\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T09:31:39.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaHadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryahadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryahadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryahadoop-2023-02-16t09-30-23-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.HDInsight/clusters/suryaspark\",\r\n \"name\": \"suryaspark\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Southeast Asia\",\r\n \"etag\": \"4e2c5b28-0661-4614-9557-60741cb699d4\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f34179e0af574bd990a4a80e0f850420\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T09:51:40.6\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SuryaSpark.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"suryasparkhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-surbeeram/providers/Microsoft.Storage/storageAccounts/suryasparkhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"suryaspark-2023-02-23t09-49-41-721z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.HDInsight/clusters/andarmod-march2023\",\r\n \"name\": \"andarmod-march2023\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"58889b01-8efb-45b7-a3da-3c1e8eea158f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"b47d639b35f94be4955cc2dec8b2320d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-07T16:54:08.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"andarmod-march2023.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"andarmodmarchhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/andarmod-shorttermtest/providers/Microsoft.Storage/storageAccounts/andarmodmarchhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"andarmod-march2023-2023-03-07t16-51-41-821z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyanipsectest1\",\r\n \"name\": \"chaoyanipsectest1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"e788daa3-aa02-49d3-b558-29403e44da93\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.5.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2207131812.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"367ac0f996a0421bbce329925e291b05\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-11T08:43:11.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyanipsectest1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyanipsecthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyanipsecthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyanipsectest-2022-08-11t08-39-02-672z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.HDInsight/clusters/chaoyantesting1\",\r\n \"name\": \"chaoyantesting1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"29167e66-afe2-4c5f-b8b7-00b165d9a72e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"43fb4c0684964cc09e2bb85da780e87b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-05-19T05:33:22.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"chaoyantesting1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"chaoyantestinhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chaoyan-testrp/providers/Microsoft.Storage/storageAccounts/chaoyantestinhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"chaoyantesting-2022-05-19t05-31-45-024z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalhbasecluster\",\r\n \"name\": \"faisalhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"c2d260b3-7c88-4293-a197-3bd01ba5cba9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"fdd6f2f04e214787a91ab03d8c70e43c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-09T18:59:29.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"ScriptExecutionFailed\",\r\n \"message\": \"Execution of the following scripts failed :- Custom\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"faisalhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalhbasecluster-2023-02-09t18-57-54-885z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalkafkacluster\",\r\n \"name\": \"faisalkafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"6a22e8d4-9a64-4f7c-81e0-dbc10fdc4396\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"f96f014c44104e059b9b76cdf5786212\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:32:47.123\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalkafkacluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalkafkaclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalkafkaclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalkafkaclist-2023-02-15t17-31-20-101z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsparkthreedotone\",\r\n \"name\": \"faisalsparkthreedotone\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"28e18c5f-d479-4420-a009-f239f0866d77\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"08a08b13feb040f695fe823f9cd4ce0b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T15:01:25.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"FaisalSparkthreedotone.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsparkthhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsparkthhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsparkthreedotone-2023-02-16t15-00-02-589z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprk3dot1\",\r\n \"name\": \"faisalsprk3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"3e344fb9-ae16-4de5-9d8a-88f3492631f9\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b19b209e520840a798c9fdf0853ca32d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-14T17:03:17.99\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprk3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprk3dohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprk3dohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprk3do-2023-02-14t17-01-00-509z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/faisalsprkcluster3dot1\",\r\n \"name\": \"faisalsprkcluster3dot1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"293ccb46-de93-4a32-a7db-1b7e7354530b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"40de045ed14244048ed41c11aa55ce6e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T17:31:11.627\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Faisalsprkcluster3dot1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"faisalsprkcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/faisalsprkcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"faisalsprkcluster-2023-02-15t17-29-17-755z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.HDInsight/clusters/for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"name\": \"for-hdi-test-spark-24-donotdelete-lanjun\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8fbca8ad-f6d9-459a-85de-2d41bbc13acd\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"218204ad46f5479f8700266ad08536ab\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T02:22:59.467\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"for-hdi-test-spark-24-donotdelete-lanjun.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"forhditestspahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/lanjun_hdi_resourcegroup/providers/Microsoft.Storage/storageAccounts/forhditestspahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"forhdi-test-spark-24-do-2023-02-15t02-20-51-216z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375\",\r\n \"name\": \"hdi-ps-test3375\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"04862a5b-dd7d-4203-8fab-5047b1e99aba\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ba5acbad4f0a4bfe82f929cc6ccf314a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-06T11:17:14.44\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3375-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test3375.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest9231.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.Storage/storageAccounts/storagepstest9231\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test3375\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.HDInsight/clusters/hdi-spark-test-eastus\",\r\n \"name\": \"hdi-spark-test-eastus\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"de91a5d7-3f91-49ad-a023-99cceacd47f8\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"46ee674f530e4c6eac0bf40ca8fa6b13\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-23T18:25:18.14\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-spark-test-eastus.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdisparktestehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/chedam-spark-test-cluster/providers/Microsoft.Storage/storageAccounts/hdisparktestehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-spark-test-eastus-2023-02-23t18-23-27-300z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.HDInsight/clusters/jacky-spart-cluster\",\r\n \"name\": \"jacky-spart-cluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f93e581f-303e-40f6-aa2e-e2af037d2015\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"ed0cbe2a53f6451a9a9a51943b3b7e4c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"autoscale\": {\r\n \"capacity\": {\r\n \"minInstanceCount\": 1,\r\n \"maxInstanceCount\": 2\r\n }\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:34:56.1\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 12\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Jacky-Spart-Cluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jackyspartcluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Jacky-Hdi-rg/providers/Microsoft.Storage/storageAccounts/jackyspartcluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jacky-spart-cluster-2023-03-10t07-31-05-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/kafkajartest\",\r\n \"name\": \"kafkajartest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"5dba8150-35d1-4431-9a33-1f6e645fb976\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"afa6e9ba6cb04b3dbb487637e4b4971c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-24T15:56:24.837\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"kafkajartest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"kafkajartesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/kafkajartesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"kafkajartest-2023-03-24t15-54-14-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.HDInsight/clusters/nabikhch-testhdi\",\r\n \"name\": \"nabikhch-testhdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"7ab7c72e-8301-4b5d-b6a8-6ae194aaed25\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"333b19509e994d2c8b2dcb4c9ad741e9\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-09-10T16:56:35.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhch-testhdi.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhcheastuhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhchdevrprg/providers/Microsoft.Storage/storageAccounts/nabikhcheastuhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhch-testhdi-2021-09-10t16-55-04-671z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/rampuvhbasecluster\",\r\n \"name\": \"rampuvhbasecluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"112945a7-a3d1-4600-8ae7-1d8f03309d10\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"cce431c503424ea5a3c0d103329b7542\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-17T22:57:31.78\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 30\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rampuvhbasecluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"rampuvhbaseclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/rampuvhbaseclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"rampuvhbasecluster-2023-01-17t22-44-44-409z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.HDInsight/clusters/shankarhadooptestcluster\",\r\n \"name\": \"shankarhadooptestcluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"06e26256-25d4-4fba-9648-30f7078f0840\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c164b1edd07f4b3fbb0787d101784942\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T01:28:16.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shankarhadooptestcluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shankarhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shankarhadoop-2023-03-23t01-23-49-690z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n },\r\n {\r\n \"name\": \"shankarhadoophdistorage2.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shankartestcluster/providers/Microsoft.Storage/storageAccounts/shankarhadoophdistorage2\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"blank\",\r\n \"saskey\": null,\r\n \"isDefault\": false,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark2d4\",\r\n \"name\": \"spark2d4\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"1153c11a-2a85-46e7-a734-52015dc5868d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"c883f1ec21bc4c849523971654062efd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T07:42:07.547\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark2d4.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark2d4hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark2d4hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark2d4-2023-02-15t07-39-53-493z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.HDInsight/clusters/spark3d1\",\r\n \"name\": \"spark3d1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"4684704b-9b54-4c86-af1c-7ef79b87b2aa\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"7e791962c38f418b9474926b349621df\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-08T09:41:23.873\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"spark3d1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"spark3d1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/fsrg-intellij/providers/Microsoft.Storage/storageAccounts/spark3d1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"spark3d1-2023-03-08t09-39-29-001z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.HDInsight/clusters/sparkclustertest\",\r\n \"name\": \"sparkclustertest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8b31425f-33d6-4fb4-a949-8ecf8ab6931b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"a49afaa3cee6473ea18436341998a8ca\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T05:40:39.997\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"sparkclustertest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparkclusterteststorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/weidong-test/providers/Microsoft.Storage/storageAccounts/sparkclusterteststorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparkclustertest-2023-02-20t05-37-29-162z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/sparktezviewtesting\",\r\n \"name\": \"sparktezviewtesting\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"51679a92-9088-4c04-a123-98b0d47a2f1f\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"52575b0c9da14a91b6b0164b881fc0bd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T21:40:20.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"SparkTezViewTesting.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sparktezviewthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/sparktezviewthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sparktezviewtesting-2023-04-03t21-38-23-344z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.HDInsight/clusters/sultan-hdi-cluster-1\",\r\n \"name\": \"sultan-hdi-cluster-1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8c758461-3e41-4c18-a9f3-5ce77e05a7bf\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"63513e3e784441259bb73ad58c602241\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Network/virtualNetworks/Sultan-Vertual-Network-Test/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-04-03T15:51:03.267\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Sultan-HDI-Cluster-1-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.11\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"sultanhdiclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Sultan-Test-Cluster-1/providers/Microsoft.Storage/storageAccounts/sultanhdiclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"sultan-hdi-cluster-2023-04-03t15-44-34-333z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.HDInsight/clusters/testhadoopv-rchandekar\",\r\n \"name\": \"testhadoopv-rchandekar\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"517c95d3-0333-442e-90fc-49c3aa0474c5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"bbdf8584bd7146bfa881a9f6d0edb126\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-19T09:11:15.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 44\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"Testhadoopv-rchandekar.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testhadoopvrchdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-rchandekar/providers/Microsoft.Storage/storageAccounts/testhadoopvrchdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testhadoopv-rchandekar-2023-02-19t09-08-45-240z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.HDInsight/clusters/testsprk1\",\r\n \"name\": \"testsprk1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"80c39751-b509-48cc-b33b-f426446131c6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.13.11\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"00161d115cb043148e4ee70f3480841a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-22T15:55:55.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"testsprk1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsprk1hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/Faisal_test/providers/Microsoft.Storage/storageAccounts/testsprk1hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"testsprk1-2023-03-22t15-53-40-199z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut_res_group_extremelengthextremelengthextremelengthextremelengthextremelengthextremelen/providers/Microsoft.HDInsight/clusters/wut-cluster-extremelengthextremelengt1\",\r\n \"name\": \"wut-cluster-extremelengthextremelengt1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"ef9588d7-7391-4786-ac73-8a3bd685c737\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3438ce92023a43bfb69f13dd19abe1a1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-03T07:59:34.263\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-cluster-extremelengthextremelengt1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-cluster-extremeleng-2023-03-03t07-50-04-213z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi1\",\r\n \"name\": \"wut-msi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"cbe06749-73db-43d4-bc7d-c659f66fae76\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"3ab1d1b9f8f74bfe9e47b7f47bb2d484\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-16T10:21:20.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi1-2023-02-16t10-18-25-176z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.HDInsight/clusters/wut-msi-with-disk\",\r\n \"name\": \"wut-msi-with-disk\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"abce6322-b4bf-459b-8bf2-76d00b710b0b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"463aa4295be340609178d8503f319c5e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T07:17:39.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wut-msi-with-disk.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"diskEncryptionProperties\": {\r\n \"vaultUri\": \"https://wutcurkv.vault.azure.net\",\r\n \"keyName\": \"wutcurkek\",\r\n \"keyVersion\": \"1a232433db114147bf21c61041c3b570\",\r\n \"encryptionAlgorithm\": \"RSA-OAEP\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\",\r\n \"encryptionAtHost\": false\r\n },\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutcurstoragev2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-kafka/providers/Microsoft.Storage/storageAccounts/wutcurstoragev2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/Microsoft.ManagedIdentity/userAssignedIdentities/wutcurmsi\",\r\n \"key\": null,\r\n \"fileSystem\": \"wut-msi-with-disk-2023-02-20t07-16-09-847z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutmsidisk\": {\r\n \"principalId\": \"197c4032-589d-4d07-a053-7dbd5767de31\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/wut-kafka/providers/microsoft.managedidentity/userassignedidentities/wutcurmsi\": {\r\n \"principalId\": \"fa1654a8-18eb-40ec-a77b-f3421be722d6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.HDInsight/clusters/x1adls04191\",\r\n \"name\": \"x1adls04191\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"b07b7393-e919-4fa3-a498-53a294c6c378\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"5.0.3.25\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"8e19fc8c328c4078aeaee5eead0dfba3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-04-19T05:40:17.037\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"x1adls04191.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": true\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"x1adlsgen20419.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/x1rg/providers/Microsoft.Storage/storageAccounts/x1adlsgen20419\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/x1usermsi0924\",\r\n \"key\": null,\r\n \"fileSystem\": \"x1adls04191fs\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/x1rg/providers/microsoft.managedidentity/userassignedidentities/x1usermsi0924\": {\r\n \"principalId\": \"048a9639-b7e1-4671-b9aa-2bab056c5b3b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.HDInsight/clusters/xinli1agentdebug\",\r\n \"name\": \"xinli1agentdebug\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"f2a8f840-0c8b-4588-af98-c0471c75f525\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e231aeff71145208dfd23b216e5167c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Network/virtualNetworks/silahutest/subnets/outboundtest\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-28T02:48:54.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"xinli1agentdebug-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.39.1.25\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"xinli1agentdehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/silahu-outbound/providers/Microsoft.Storage/storageAccounts/xinli1agentdehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"xinli1agentdebug-2023-02-28t02-46-13-138z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yalu-ssh-test\",\r\n \"name\": \"yalu-ssh-test\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"11482072-35bb-4f70-8c7c-d83fbd365235\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"535fba725345441f84453158ed58bb5b\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-03-28T05:51:27.62\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"UnhandledExceptionErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-ssh-test.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalusshtesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yalusshtesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-ssh-test-2022-03-28t05-50-12-196z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/yaluversiontest\",\r\n \"name\": \"yaluversiontest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"8a084b25-3fdf-41dc-8524-ff314d5736eb\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2207131812.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"165dba2239b4435fb837bbb28cd94562\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2022-08-26T04:01:17.133\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToDeleteDatabaseErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yaluversiontest.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluversiontehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.Storage/storageAccounts/yaluversiontehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yaluversiontest-2022-08-26t03-59-45-628z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweiuseprod\",\r\n \"name\": \"ziweiuseprod\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US\",\r\n \"etag\": \"a1c924a7-ef70-424c-a707-3acea34ed284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"f5ed2b902a8c4148aaa06b2083c5fcf1\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"edgenode1\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-02-20T13:26:43.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweiuseprod.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweiuseprodhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweiuseprodhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweiuseprod-2022-02-20\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/bhselvagRGeastus2/providers/Microsoft.HDInsight/clusters/bhselvtest-donotdel\",\r\n \"name\": \"bhselvtest-donotdel\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a8725f13-af0b-4401-b570-6214a8816284\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3016-3\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2001080246.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"846a4280314d4d21a3470815e7789c36\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-02-26T16:58:15.13\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"bhselvtest-donotdel.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"bhselvtestdonhdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"bhselvtest-donotdel-2020-02-26t16-55-47-031z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/01madhu24june/providers/Microsoft.HDInsight/clusters/harinic-l-701-522\",\r\n \"name\": \"harinic-l-701-522\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"0fc538cd-057a-455a-8870-25391aa66162\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.2.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.2.1000.0.4930622.json\",\r\n \"kind\": \"hadoop\"\r\n },\r\n \"clusterId\": \"927c705a4e1e4cc4b46b3b08a18e6f5d\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"remote\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Deleting\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2015-07-02T00:22:32.477\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"AzureResourceDeletionFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"harinic-l-701-522.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-test-rg/providers/Microsoft.HDInsight/clusters/ly-test362\",\r\n \"name\": \"ly-test362\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c58670f7-2862-4ed6-b7bd-6c8cdea1400a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"hbase\",\r\n \"componentVersion\": {\r\n \"hbase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"b5f43cb4889b40e4b0d278a17d430423\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shangsu\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-03-05T16:31:01.787\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ly-test362.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yalu50test2hdistorage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ly-test362\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/priteeeastus2rg/providers/Microsoft.HDInsight/clusters/priteeeastus2pre\",\r\n \"name\": \"priteeeastus2pre\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"e6aa83fc-e6bb-469c-b34b-f81ce52811b1\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.5.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.5.1000.0.10078699.json\",\r\n \"kind\": \"HADOOP\"\r\n },\r\n \"clusterId\": \"5847e4654a9e4ab18b8e49d59215b545\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2017-05-19T00:13:18.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"priteeeastus2pre.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.HDInsight/clusters/rahusingsecurehdi1\",\r\n \"name\": \"rahusingsecurehdi1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Central US\",\r\n \"etag\": \"76bb8ab4-a964-4515-8aa7-655f8ecce32a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-3.6.1000.0.11683648.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"31990306470645bfa413700df47fc45c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d13\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_A2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/rahusingtestrg/providers/Microsoft.Network/virtualNetworks/adVNET/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"securityProfile\": {\r\n \"directoryType\": \"ActiveDirectory\",\r\n \"domain\": \"contoso.com\",\r\n \"organizationalUnitDN\": \"OU=Hadoop,DC=contoso,DC=com\",\r\n \"ldapsUrls\": [\r\n \"ldaps://contoso.com:636/\"\r\n ],\r\n \"domainUsername\": \"hdiuser@contoso.com\",\r\n \"clusterUsersGroupDNs\": [\r\n \"hadoopusers\"\r\n ],\r\n \"aaddsResourceId\": null,\r\n \"msiResourceId\": null\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2018-04-10T19:29:13.727\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"rahusingsecurehdi1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"premium\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.HDInsight/clusters/hdihiveinteractivequery\",\r\n \"name\": \"hdihiveinteractivequery\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"e0406da8-4e88-47be-9046-bd73cc55730a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b630111eea894ea2b83b9927fd696708\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-01-06T19:40:13.563\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 18\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdihiveinteractivequery.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdihiveinterahdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/RG_v-rampuv/providers/Microsoft.Storage/storageAccounts/hdihiveinterahdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdihiveinteractivequery-2023-01-06t19-33-23-190z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.HDInsight/clusters/jairokafkacluster\",\r\n \"name\": \"jairokafkacluster\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"72468a3d-3ff2-41a8-a319-0380807b9fda\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.7.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"e4d6eaf7f2a84e9c8f73ecf5f916659c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-27T17:58:43.66\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 36\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jairoKafkaCluster.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jairokafkacluhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/jairoTest/providers/Microsoft.Storage/storageAccounts/jairokafkacluhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jairokafkacluster-2023-02-27t17-54-29-913z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.HDInsight/clusters/zzzz-shangwei-test-pe\",\r\n \"name\": \"zzzz-shangwei-test-pe\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US\",\r\n \"etag\": \"bd656217-7df4-4dbd-8767-deb0aa1007b5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.10.4\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2208310943.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"01bc6a206aea46a0844a6ba5e4c1e4ce\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Network/virtualNetworks/shangwei-pl-vnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-09-28T11:53:42.887\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzzz-shangwei-test-pe-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.17\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipladlsgen2.dfs.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-privatelink/providers/Microsoft.Storage/storageAccounts/shangweipladlsgen2\",\r\n \"msiResourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shangwei-test-msi\",\r\n \"key\": null,\r\n \"fileSystem\": \"asd-shangwei-test-pe-2022-09-28t11-39-57-881z\",\r\n \"container\": null,\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/shangwei-privatelink/providers/microsoft.managedidentity/userassignedidentities/shangwei-test-msi\": {\r\n \"principalId\": \"2f5a5662-86b4-4c5f-a3b8-eba4db9b5ee0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.HDInsight/clusters/hiveserverinteractivetestfeb20\",\r\n \"name\": \"hiveserverinteractivetestfeb20\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South India\",\r\n \"etag\": \"6cabab4b-9e77-4a77-b9f6-e36fbb52d701\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"f3518a9df252426a87aaabe174d34549\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a5\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-20T04:55:42.957\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 26\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hiveserverinteractivetestfeb20.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hiveserverinthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/v-umamag/providers/Microsoft.Storage/storageAccounts/hiveserverinthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hiveserverinte-2023-02-20t04-52-17-521z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.HDInsight/clusters/shangwei-poc-hdi\",\r\n \"name\": \"shangwei-poc-hdi\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"4dc7b507-2bf7-47dd-baf5-fe0fd82a7718\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2e97453096a1423fae7bf95c28faf715\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Network/virtualNetworks/shangwei-poc-hdi/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-02-15T13:24:27.213\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-poc-hdi-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.4\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweipochdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-bofa-poc-hdi/providers/Microsoft.Storage/storageAccounts/shangweipochdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-poc-hdi-2023-02-15t13-22-36-476z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.HDInsight/clusters/test-outbound\",\r\n \"name\": \"test-outbound\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"6feb5fe3-fa25-4116-b17b-4d0771b02ff3\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"5.0.8.10\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2302250400.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"aa331a83baf348149ce4f24b5ab04f7e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Network/virtualNetworks/test-shein-vnet/subnets/hdinsight-cluster\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-14T09:42:47.93\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.3.17\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"test-outbound-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.3.10\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"testsheinoutbound.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/test-shein-case-kaili1/providers/Microsoft.Storage/storageAccounts/testsheinoutbound\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"test-outbound-2023-03-14t09-36-58-695z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.HDInsight/clusters/yalu-usw3-test5312\",\r\n \"name\": \"yalu-usw3-test5312\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 3\",\r\n \"etag\": \"e3872e8c-1711-45cc-9cd6-3d13716f9ca5\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2104161825.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"cb76c7ddee1a4f67b490fca6eae4ada5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d3_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"DeleteError\",\r\n \"createdDate\": \"2021-05-31T06:11:12.79\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"FailedToSetupPerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n },\r\n {\r\n \"code\": \"FailedToDeletePerClusterContainerErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"yalu-usw3-test5312.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"yaluusw3test5hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/yalu-usw3-rg/providers/Microsoft.Storage/storageAccounts/yaluusw3test5hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"yalu-usw3-test5312-2021-05-31t06-10-18-697z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.HDInsight/clusters/ziweinewregion\",\r\n \"name\": \"ziweinewregion\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Germany North\",\r\n \"etag\": \"fcd8e6b6-92bf-4c33-a1ae-7fddaec7a588\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.0\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.0.2202250102.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b4a777151b6a4402bc22c9d9224d01a4\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-06-09T06:27:54.02\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"ziweinewregion.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"ziweinewregiohdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ziweihe-test/providers/Microsoft.Storage/storageAccounts/ziweinewregiohdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"ziweinewregion-2022-06-09t06-26-13-110z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/congrli-scus/providers/Microsoft.HDInsight/clusters/congrli0610\",\r\n \"name\": \"congrli0610\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"90beba44-a429-4258-ad16-0c2a1f76fab2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3025-2\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2006100202.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"22d87ce7ad974de6bae9ab73ba8e5f3c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d12_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_d4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"DeleteQueued\",\r\n \"createdDate\": \"2020-06-11T00:33:33.83\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"congrli0610.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"congrli0610storage.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"congrli0610-2020-06-11t00-31-49-109z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.HDInsight/clusters/hdioutboundclusterteest\",\r\n \"name\": \"hdioutboundclusterteest\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"a61398fa-8f8d-4d41-8b93-7d591525fcde\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.19\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2201032127.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9f91c3a42519468a96bd5b6d0d2702a5\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Network/virtualNetworks/hdiprivatevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-12T12:34:20.51\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.7\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdioutboundclusterteest-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.8\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdioutboundclhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdi-outbound-test/providers/Microsoft.Storage/storageAccounts/hdioutboundclhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdioutboundclusterteest-2022-01-12t12-30-48-047z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.HDInsight/clusters/hdi-ps-test102\",\r\n \"name\": \"hdi-ps-test102\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"84b87f16-a7f8-4b1b-b83a-8e4c54b857b8\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.3.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.2000.1.2101301510.json\",\r\n \"kind\": \"Spark\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"cba3d7d247cc4e63aa2b50b90e8f0075\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2s_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-21T07:04:52.027\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdi-ps-test102.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"storagepstest7948.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9688/providers/Microsoft.Storage/storageAccounts/storagepstest7948\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"hdi-ps-test102\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": true,\r\n \"hostSku\": \"ESv3-Type2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318\",\r\n \"name\": \"hdisdk-pe7318\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"9186d025-adad-451f-9176-c5935a81674a\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.2000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3033-1\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.2000.67.2109210156.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"4c1b22c5bdd548a1a5c9e77f24882b24\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser1641\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Network/virtualNetworks/zzytestvnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-09-22T06:30:10.33\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"172.22.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-pe7318-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"172.22.0.16\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage7678.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Storage/storageAccounts/hdicsharpstorage7678\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8490\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n },\r\n \"privateEndpointConnections\": [\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.HDInsight/clusters/hdisdk-pe7318/privateEndpointConnections/hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"name\": \"hdi7318pe1.f6113e03-0f95-4b6a-ae7b-ba0ea58c4e0b\",\r\n \"type\": \"Microsoft.HDInsight/clusters/privateEndpointConnections\",\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/hdicsharprg8691/providers/Microsoft.Network/privateEndpoints/hdi7318pe1\"\r\n },\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Approve by zhezhou\",\r\n \"actionsRequired\": \"\"\r\n },\r\n \"linkIdentifier\": \"587287652\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.HDInsight/clusters/jan17hd\",\r\n \"name\": \"jan17hd\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"852573c0-ac8d-4a8b-89b1-45cb4ea41232\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.2000.1\",\r\n \"clusterHdpVersion\": \"4.1.6.48\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.2000.1.2201042214.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"197ae0a988b24fdd929423cb662bbb86\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2\",\r\n \"subnet\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Network/virtualNetworks/vneastus2/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2022-01-17T10:31:07.18\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-ssh.azurehdinsight.net\",\r\n \"port\": 22,\r\n \"privateIPAddress\": \"10.0.0.5\"\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"jan17hd-int.azurehdinsight.net\",\r\n \"port\": 443,\r\n \"privateIPAddress\": \"10.0.0.15\"\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"jan17hdhdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/somnathRG/providers/Microsoft.Storage/storageAccounts/jan17hdhdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"jan17hd-2022-01-17t10-26-53-891z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Disabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.HDInsight/clusters/nabikhtipclust3\",\r\n \"name\": \"nabikhtipclust3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"4dc18dc1-b195-4ff1-b0c2-1bb3a79ebdb2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2111111024.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"faba39f8476c48fb8d897dcaa9e92372\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2021-11-13T06:48:37.403\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"nabikhtipclust3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"nabikhtipclushdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/nabikhch-devrp/providers/Microsoft.Storage/storageAccounts/nabikhtipclushdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"nabikhtipclust3-2021-11-13t06-45-30-946z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-2\",\r\n \"name\": \"reddytest-1001-2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"25c57ab7-720a-40bc-83a4-d4c3832f654e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"72163ae38f5f4301adad120695f3112f\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2021-10-01T23:51:53.48\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"282211southcentralus.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/28f78ae5-97b2-487e-b097-270de10ce6b8/resourceGroups/securitydata/providers/Microsoft.Storage/storageAccounts/282211southcentralus\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2-2021-10-01t23-49-55-536z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/ReddyRG/providers/Microsoft.HDInsight/clusters/reddytest-1001-3\",\r\n \"name\": \"reddytest-1001-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"50822611-d77e-4d15-9fa8-415be8590a6d\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.7\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2109140342.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5cab8e93b7d94a62bb8206fc64b148d0\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-10-01T23:56:15.177\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"reddytest-1001-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"adsnotebookrelease.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/7f31cba8-b597-4129-b158-8f21a7395bd0/resourceGroups/adsnotebook/providers/Microsoft.Storage/storageAccounts/adsnotebookrelease\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"reddytest-1001-2021-10-01t23-55-12-100z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.HDInsight/clusters/shangwei-test-script\",\r\n \"name\": \"shangwei-test-script\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"f2237b18-e437-464b-8685-de8146c66b2c\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.7.5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2108051812.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"13383cdb43584164be3015e69bd00fbe\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Maintenance\",\r\n \"createdDate\": \"2021-08-16T12:09:17.457\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shangwei-test-script.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shangweitestshdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shangwei-hdi/providers/Microsoft.Storage/storageAccounts/shangweitestshdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shangwei-test-s-2021-08-16t12-07-25-496z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip1\",\r\n \"name\": \"wuttesttip1\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"c643f24b-ab3b-446a-a944-cc22976b6d5b\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"6878300ba5904fee8d37ea4c49fd657e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T08:05:36.163\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip1.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220830tip1\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrp/providers/Microsoft.HDInsight/clusters/wuttesttip2\",\r\n \"name\": \"wuttesttip2\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"East US 2\",\r\n \"etag\": \"c6a1e318-6b1a-4ee7-9678-3c45a460054a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2208221003.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"5022c17e86c04151b52efa226c781236\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"wut\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2022-08-31T09:04:25.013\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 0\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"wuttesttip2.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"wutvnetclustehdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/wut-devrg-vnet/providers/Microsoft.Storage/storageAccounts/wutvnetclustehdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"wut20220831tip2\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytestec2023021501\",\r\n \"name\": \"zzytestec2023021501\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"f80298a0-42c9-45fb-bcbd-c21949a368e6\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2302140238.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"ab068287b1c54e2e86f3cd009a2994f7\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-02-15T05:51:53.337\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 28\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytestec2023021501.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytestec2023hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytestec2023hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytestec20230214-2023-02-15t05-48-55-676z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzytesteccert003\",\r\n \"name\": \"zzytesteccert003\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"717d837f-3ba3-4b6a-8316-488824d78c8a\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"5.0.3000.1\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-5.0.3000.1.2212021230.json\",\r\n \"kind\": \"SPARK\",\r\n \"componentVersion\": {\r\n \"Spark\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"926003a85ef746a79582414d9d0f8aef\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"clusterState\": \"Error\",\r\n \"createdDate\": \"2023-01-30T08:53:33.52\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 48\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"AzureResourceCreationFailedErrorCode\",\r\n \"message\": \"Internal server error occurred while processing the request. Please retry the request or contact support.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzytesteccert003.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesteccerthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesteccerthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzytesteccert003-2023-01-30t08-52-19-685z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.HDInsight/clusters/alaw-hadoop\",\r\n \"name\": \"alaw-hadoop\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"a644024e-45da-4b23-8347-7ccadb095d46\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"acf2f5f3b77d49eda85a0d2ba1854d3e\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-02T02:05:48.59\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"alaw-hadoop.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"alawhadoophdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/adamlaw-devrp-west/providers/Microsoft.Storage/storageAccounts/alawhadoophdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"alaw-hadoop-2023-03-02t02-05-00-094z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.HDInsight/clusters/zzy12testclimsgraph\",\r\n \"name\": \"zzy12testclimsgraph\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"West US 2\",\r\n \"etag\": \"b1954f3b-435e-4d0e-8129-4e82dd07e189\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.8.29\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/spark-4.0.3000.1.2202262045.json\",\r\n \"kind\": \"spark\",\r\n \"componentVersion\": {\r\n \"spark\": \"2.4\"\r\n }\r\n },\r\n \"clusterId\": \"30cbd2b68eaf4d899a1f88852ae30d0a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2022-05-18T04:00:46.723\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"errors\": [\r\n {\r\n \"code\": \"InvalidScriptLocation\",\r\n \"message\": \"Failed to validate script action at URI https://lanjuntesthdihdistorage.blob.core.windows.net/ssh/changecredentials.sh. Exception message: Script URI cannot be retrieved correctly. HTTP Status code: Conflict.\"\r\n }\r\n ],\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"zzy12testclimsgraph.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"zzytesthdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/zzy-test-rg/providers/Microsoft.Storage/storageAccounts/zzytesthdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"zzy12testclimsgraph\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-01\",\r\n \"name\": \"shiyi-pl-hadoop-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29990d6a-6caa-4b11-82f6-30fea35a6fc4\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c2e3babae5ec4ee08a36c2c90894eced\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:41:45.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 8\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa01.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-01/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa01\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-01\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-02\",\r\n \"name\": \"shiyi-pl-hadoop-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"fdf7f0f4-800a-45fc-8b4f-5357b8b1c3d2\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"2fd6536c8ce148bda284f73d7444d400\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f8\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T06:46:03.08\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-02/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-03\",\r\n \"name\": \"shiyi-pl-hadoop-03\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"3b96fb85-fa13-40f2-8abe-901ca94902e0\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"11f0972bacd44965a373acd717924ecd\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_f16\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:14:35.507\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-03.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa03.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-03/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa03\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-03\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-04\",\r\n \"name\": \"shiyi-pl-hadoop-04\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"83d4b2bd-a438-4884-b578-07fd80427e3d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c1fc40e15a2d41dfab258e833e6ba850\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:16:52.367\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 52\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-04.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa04.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-04/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa04\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-04\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-05\",\r\n \"name\": \"shiyi-pl-hadoop-05\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"c4b9f731-3773-4ff7-b484-5b0ff3394ff7\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"c60d7a208817420d8320be7c677ab2f2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T07:24:54.443\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 128\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-05.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa05.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-05/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa05\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-05\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-06\",\r\n \"name\": \"shiyi-pl-hadoop-06\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"302f52c5-59fc-4636-938d-d491fe9920fc\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"8247d20bc8e448279746c2b62ce805b8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a8m_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:19:35.85\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 24\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-06.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa06.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-06/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa06\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-06\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-07\",\r\n \"name\": \"shiyi-pl-hadoop-07\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f4ef091a-a24c-417c-9962-bcfc8b02de8f\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"239c19a2c1554ed7862044e0e4703f22\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:37:41.05\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-07.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa07.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-07/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa07\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-07\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-08\",\r\n \"name\": \"shiyi-pl-hadoop-08\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"f76467ac-9a10-4174-b85a-e96845254047\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"d8fda12bd8b444b186f37dea68622d31\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:39:46.89\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 16\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-08.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa08.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-08/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa08\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-08\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-09\",\r\n \"name\": \"shiyi-pl-hadoop-09\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"29bfd3d6-d1bb-4b99-9bce-f4c149495311\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"b0602bd423544d729d56f6dd50a5fe78\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:15.987\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-09.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa09.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-09/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa09\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-09\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-10\",\r\n \"name\": \"shiyi-pl-hadoop-10\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8e41f979-734a-47e5-a6a6-ef6a80a2a9df\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"1b548cbfb8b24d46a360df3d6ccf07c8\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e20ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e32ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T08:43:29.49\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 72\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-10.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa10.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-10/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa10\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-10\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-11\",\r\n \"name\": \"shiyi-pl-hadoop-11\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"d6696882-f688-4e87-bd74-b7e51b809d79\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"4c8e5b20edca4aef98d5590715a9dd2c\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16d_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:10.573\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-11.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa11.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-11/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa11\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-11\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.HDInsight/clusters/shiyi-pl-hadoop-12\",\r\n \"name\": \"shiyi-pl-hadoop-12\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7620fa29-cc62-4974-8540-bdfa2dc5f878\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"hadoop\",\r\n \"componentVersion\": {\r\n \"hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"9d2d4967c7a14a22ae8718988b6caa2a\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e48ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e64ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-16T09:05:25.92\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 160\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hadoop-12.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhadoopsa12.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hadoop-12/providers/Microsoft.Storage/storageAccounts/shiyiplhadoopsa12\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hadoop-12\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hbase-01\",\r\n \"name\": \"shiyi-pl-hbase-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8db0b47e-ec70-47c0-bfc8-1dec22d35b87\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hbase-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HBASE\",\r\n \"componentVersion\": {\r\n \"HBase\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"3b5e5a78385a4c0da678b1d30c0ca0b3\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:03:24.73\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 22\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hbase-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhbase0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hbase-01/providers/Microsoft.Storage/storageAccounts/shiyiplhbase0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hbase-01-2023-03-20t02-57-30-182z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.HDInsight/clusters/shiyi-pl-hdp-3\",\r\n \"name\": \"shiyi-pl-hdp-3\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"7d83c57b-727d-4610-b944-76bed3845d6e\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"HADOOP\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"75d7946e29ae42c0b5be6919c1569cf2\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 4,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-10T07:30:56.76\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 40\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hdp-3.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhdp3hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hdp-3/providers/Microsoft.Storage/storageAccounts/shiyiplhdp3hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hdp-3-2023-03-10t07-28-45-657z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-hive-01\",\r\n \"name\": \"shiyi-pl-hive-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"1614b7e9-b8f2-439e-a31c-a9c568a69f39\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/interactivehive-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"INTERACTIVEHIVE\",\r\n \"componentVersion\": {\r\n \"InteractiveHive\": \"3.1\"\r\n }\r\n },\r\n \"clusterId\": \"e7f7e90b1ab34b6a8ab3d5475f3f3eb6\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 1,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e16_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T03:10:23.12\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-hive-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplhive01hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-hive-01/providers/Microsoft.Storage/storageAccounts/shiyiplhive01hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-hive-01-2023-03-20t03-06-54-850z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-01\",\r\n \"name\": \"shiyi-pl-kafka-01\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"8f76ee5e-304f-4833-a2a0-725661b34f13\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"KAFKA\",\r\n \"componentVersion\": {\r\n \"Kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"c8f68a7bb80b4f7b9dc5c2033af2da38\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4_v3\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 1,\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-20T05:44:19.98\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 32\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-01.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafka0hdistorage.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-01/providers/Microsoft.Storage/storageAccounts/shiyiplkafka0hdistorage\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-01-2023-03-20t05-41-36-217z\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.HDInsight/clusters/shiyi-pl-kafka-02\",\r\n \"name\": \"shiyi-pl-kafka-02\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"Poland Central\",\r\n \"etag\": \"014feb11-1c70-4766-85b7-91f10423540d\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"4.0.3000.1\",\r\n \"clusterHdpVersion\": \"4.1.12.6\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/kafka-4.0.3000.1.2212021230.json\",\r\n \"kind\": \"kafka\",\r\n \"componentVersion\": {\r\n \"kafka\": \"2.1\"\r\n }\r\n },\r\n \"clusterId\": \"45d348febd6440b89502cb184a0ce201\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e4ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e8ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"dataDisksGroups\": [\r\n {\r\n \"disksPerNode\": 2,\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"diskSizeGB\": 1023\r\n }\r\n ],\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_e2ds_v4\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"shiyi\"\r\n }\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2023-03-23T09:33:10.69\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 38\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"shiyi-pl-kafka-02.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"shiyiplkafkasa02.blob.core.windows.net\",\r\n \"resourceId\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/shiyi-rg-pl-kafka-02/providers/Microsoft.Storage/storageAccounts/shiyiplkafkasa02\",\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"shiyi-pl-kafka-02\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test5237/providers/Microsoft.HDInsight/clusters/hdi-ps-test3375?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2NsdXN0ZXJzL2hkaS1wcy10ZXN0MzM3NT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", - "RequestMethod": "DELETE", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f3a8bb87-b34d-4a1e-9bdd-3be6b7effd0f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/9a098c3c-7e80-46de-8a6b-07136ab9fa94-0-r?api-version=2021-06-01" - ], - "Retry-After": [ - "60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East US/azureasyncoperations/9a098c3c-7e80-46de-8a6b-07136ab9fa94-0-r?api-version=2021-06-01" - ], - "x-ms-request-id": [ - "f7c766fa-4c8a-4b82-bd45-1d810e08636a" - ], - "x-ms-hdi-served-by": [ - "eastus" + "1198" ], "x-ms-correlation-request-id": [ - "0344a20f-9fcd-4941-ad1a-f6d8d6664473" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "ea33f150-2986-48ba-a27d-5cdfdcced761" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T112912Z:0344a20f-9fcd-4941-ad1a-f6d8d6664473" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "KOREASOUTH:20230724T015045Z:ea33f150-2986-48ba-a27d-5cdfdcced761" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:29:12 GMT" + "Mon, 24 Jul 2023 01:50:44 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" ], "Expires": [ "-1" @@ -2210,18 +142,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/azureasyncoperations/9a098c3c-7e80-46de-8a6b-07136ab9fa94-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvYXp1cmVhc3luY29wZXJhdGlvbnMvOWEwOThjM2MtN2U4MC00NmRlLThhNmItMDcxMzZhYjlmYTk0LTAtcj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/581cd44c-3aee-4436-acb3-4ce6e5b58971?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy81ODFjZDQ0Yy0zYWVlLTQ0MzYtYWNiMy00Y2U2ZTViNTg5NzE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "f3a8bb87-b34d-4a1e-9bdd-3be6b7effd0f" - ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2232,59 +161,59 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "d728728b-07e4-4688-bbf8-7c84ce9a5f84" + "Location": [ + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/581cd44c-3aee-4436-acb3-4ce6e5b58971?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" ], - "x-ms-hdi-served-by": [ - "eastus" + "x-ms-request-id": [ + "fb34b4b4-6556-400a-b2dc-7adb707ce171" ], - "x-ms-correlation-request-id": [ - "31574e35-5851-4eb1-9492-9d2eaa0476fe" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T113013Z:31574e35-5851-4eb1-9492-9d2eaa0476fe" + "x-ms-correlation-request-id": [ + "0aa5b169-0c9b-47f0-b67b-d297dc695fb2" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREASOUTH:20230724T015103Z:0aa5b169-0c9b-47f0-b67b-d297dc695fb2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:30:12 GMT" - ], - "Content-Length": [ - "22" + "Mon, 24 Jul 2023 01:51:02 GMT" ], "Content-Type": [ - "application/json; charset=utf-8" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.HDInsight/locations/East%20US/operationresults/9a098c3c-7e80-46de-8a6b-07136ab9fa94-0-r?api-version=2021-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuSERJbnNpZ2h0L2xvY2F0aW9ucy9FYXN0JTIwVVMvb3BlcmF0aW9ucmVzdWx0cy85YTA5OGMzYy03ZTgwLTQ2ZGUtOGE2Yi0wNzEzNmFiOWZhOTQtMC1yP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/providers/Microsoft.Storage/locations/japaneast/asyncoperations/581cd44c-3aee-4436-acb3-4ce6e5b58971?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvamFwYW5lYXN0L2FzeW5jb3BlcmF0aW9ucy81ODFjZDQ0Yy0zYWVlLTQ0MzYtYWNiMy00Y2U2ZTViNTg5NzE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestHeaders": { - "x-ms-client-request-id": [ - "f3a8bb87-b34d-4a1e-9bdd-3be6b7effd0f" - ], "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/8.0.0.0" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2296,46 +225,49 @@ "no-cache" ], "x-ms-request-id": [ - "ffb77335-b704-4d74-b3c5-a486e266736e" - ], - "x-ms-hdi-served-by": [ - "eastus" + "e27362d9-22cc-4bb9-93bc-8879e9697f3c" ], - "x-ms-correlation-request-id": [ - "ba64b020-5679-434d-9bb0-279b92a3eed4" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T113013Z:ba64b020-5679-434d-9bb0-279b92a3eed4" + "x-ms-correlation-request-id": [ + "eb105d6f-3fd8-4319-b18b-0527b1245c5a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-routing-request-id": [ + "KOREASOUTH:20230724T015106Z:eb105d6f-3fd8-4319-b18b-0527b1245c5a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:30:12 GMT" + "Mon, 24 Jul 2023 01:51:05 GMT" + ], + "Content-Length": [ + "1384" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 204 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_RAGRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9350/providers/Microsoft.Storage/storageAccounts/storagepstest896\",\r\n \"name\": \"storagepstest896\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T01:50:40.559405Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2023-07-24T01:50:40.559405Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2023-07-24T01:50:40.4344628Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest896.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest896.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest896.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest896.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"japaneast\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"japanwest\",\r\n \"statusOfSecondary\": \"available\",\r\n \"secondaryEndpoints\": {\r\n \"blob\": \"https://storagepstest896-secondary.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest896-secondary.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest896-secondary.table.core.windows.net/\"\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test5237?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q1MjM3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourceGroups/group-ps-test9350/providers/Microsoft.Storage/storageAccounts/storagepstest896/listKeys?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlR3JvdXBzL2dyb3VwLXBzLXRlc3Q5MzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdDg5Ni9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "POST", "RequestHeaders": { "x-ms-client-request-id": [ - "4e9d0621-9f30-41e5-8a71-4dcbaba746ef" + "b2753cb8-b830-4ca4-a934-41863202bbef" ], "Accept-Language": [ "en-US" @@ -2343,8 +275,8 @@ "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2355,224 +287,59 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], "x-ms-request-id": [ - "8b6d639a-4d13-415f-8dc5-e6dbe15ba7a6" - ], - "x-ms-correlation-request-id": [ - "8b6d639a-4d13-415f-8dc5-e6dbe15ba7a6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T113014Z:8b6d639a-4d13-415f-8dc5-e6dbe15ba7a6" + "05759189-b464-4027-bc69-00adedf2d1e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:30:13 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "11999" ], - "x-ms-request-id": [ - "813e06a4-a9d7-4a60-9e0e-cdec97b0d94e" - ], "x-ms-correlation-request-id": [ - "813e06a4-a9d7-4a60-9e0e-cdec97b0d94e" + "bc760c7c-883b-464d-a334-14f19c82e137" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T113029Z:813e06a4-a9d7-4a60-9e0e-cdec97b0d94e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "KOREASOUTH:20230724T015107Z:bc760c7c-883b-464d-a334-14f19c82e137" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:30:28 GMT" - ], - "Expires": [ - "-1" + "Mon, 24 Jul 2023 01:51:06 GMT" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "fa3c5fe1-423e-4308-8115-ada2094230c5" - ], - "x-ms-correlation-request-id": [ - "fa3c5fe1-423e-4308-8115-ada2094230c5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T113044Z:fa3c5fe1-423e-4308-8115-ada2094230c5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "288" ], - "Date": [ - "Thu, 06 Apr 2023 11:30:43 GMT" + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/resourcegroups/group-ps-test9350?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L3Jlc291cmNlZ3JvdXBzL2dyb3VwLXBzLXRlc3Q5MzUwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "DELETE", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.700.22.55902", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" - ] - }, - "RequestBody": "", - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "4746e09a-1f68-4976-9ce0-1274b13eccfe" - ], - "x-ms-correlation-request-id": [ - "4746e09a-1f68-4976-9ce0-1274b13eccfe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20230406T113100Z:4746e09a-1f68-4976-9ce0-1274b13eccfe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 06 Apr 2023 11:30:59 GMT" + "x-ms-client-request-id": [ + "a79f0f82-56ba-4e2d-ad91-2571f75f6556" ], - "Expires": [ - "-1" + "Accept-Language": [ + "en-US" ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2584,22 +351,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "eaa19a01-bac7-47d2-8c8d-77677576fac2" + "933b1847-d05d-430f-9070-b181d8072ef5" ], "x-ms-correlation-request-id": [ - "eaa19a01-bac7-47d2-8c8d-77677576fac2" + "933b1847-d05d-430f-9070-b181d8072ef5" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T113115Z:eaa19a01-bac7-47d2-8c8d-77677576fac2" + "KOREACENTRAL:20230724T021047Z:933b1847-d05d-430f-9070-b181d8072ef5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2608,7 +375,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:31:15 GMT" + "Mon, 24 Jul 2023 02:10:47 GMT" ], "Expires": [ "-1" @@ -2621,15 +388,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt6TlRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2641,22 +408,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "a349c0b9-0257-46fe-8363-bfdfb11650e0" + "ff5a2bc8-97eb-4f3f-bf2b-d2eea188fc02" ], "x-ms-correlation-request-id": [ - "a349c0b9-0257-46fe-8363-bfdfb11650e0" + "ff5a2bc8-97eb-4f3f-bf2b-d2eea188fc02" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T113130Z:a349c0b9-0257-46fe-8363-bfdfb11650e0" + "KOREACENTRAL:20230724T021102Z:ff5a2bc8-97eb-4f3f-bf2b-d2eea188fc02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2665,7 +432,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:31:30 GMT" + "Mon, 24 Jul 2023 02:11:02 GMT" ], "Expires": [ "-1" @@ -2678,15 +445,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt6TlRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2698,22 +465,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "ab3c6acb-32f0-4b3d-a5ab-59ea63fb6094" + "297fef69-f362-46dc-8056-b4cba6ad05a2" ], "x-ms-correlation-request-id": [ - "ab3c6acb-32f0-4b3d-a5ab-59ea63fb6094" + "297fef69-f362-46dc-8056-b4cba6ad05a2" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T113145Z:ab3c6acb-32f0-4b3d-a5ab-59ea63fb6094" + "KOREACENTRAL:20230724T021118Z:297fef69-f362-46dc-8056-b4cba6ad05a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2722,7 +489,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:31:45 GMT" + "Mon, 24 Jul 2023 02:11:18 GMT" ], "Expires": [ "-1" @@ -2735,15 +502,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt6TlRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2755,22 +522,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "8f7a79b8-35dd-4453-8d6d-8d310f43d1ac" + "3b6943de-c60a-44ca-99c9-5dc8dd67151a" ], "x-ms-correlation-request-id": [ - "8f7a79b8-35dd-4453-8d6d-8d310f43d1ac" + "3b6943de-c60a-44ca-99c9-5dc8dd67151a" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T113200Z:8f7a79b8-35dd-4453-8d6d-8d310f43d1ac" + "KOREACENTRAL:20230724T021133Z:3b6943de-c60a-44ca-99c9-5dc8dd67151a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2779,7 +546,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:32:00 GMT" + "Mon, 24 Jul 2023 02:11:32 GMT" ], "Expires": [ "-1" @@ -2792,15 +559,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt6TlRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2812,22 +579,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "6406236c-26c1-46c4-8cbf-1c12f75d5915" + "17b0651c-89d9-44ec-b6a0-82c328963ec6" ], "x-ms-correlation-request-id": [ - "6406236c-26c1-46c4-8cbf-1c12f75d5915" + "17b0651c-89d9-44ec-b6a0-82c328963ec6" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T113215Z:6406236c-26c1-46c4-8cbf-1c12f75d5915" + "KOREACENTRAL:20230724T021148Z:17b0651c-89d9-44ec-b6a0-82c328963ec6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2836,7 +603,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:32:15 GMT" + "Mon, 24 Jul 2023 02:11:47 GMT" ], "Expires": [ "-1" @@ -2849,15 +616,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt6TlRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2869,16 +636,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "5a987468-0f71-470b-821e-4a4a6f722946" + "f8aa1cf5-7cfb-4665-b2d5-02cc8d571f5d" ], "x-ms-correlation-request-id": [ - "5a987468-0f71-470b-821e-4a4a6f722946" + "f8aa1cf5-7cfb-4665-b2d5-02cc8d571f5d" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T113231Z:5a987468-0f71-470b-821e-4a4a6f722946" + "KOREACENTRAL:20230724T021203Z:f8aa1cf5-7cfb-4665-b2d5-02cc8d571f5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2887,7 +654,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:32:30 GMT" + "Mon, 24 Jul 2023 02:12:03 GMT" ], "Expires": [ "-1" @@ -2900,15 +667,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDUyMzctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRFV5TXpjdFJVRlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUpsWVhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/964c10bb-8a6c-43bc-83d3-6b318c6c7305/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1HUk9VUDoyRFBTOjJEVEVTVDkzNTAtSkFQQU5FQVNUIiwiam9iTG9jYXRpb24iOiJqYXBhbmVhc3QifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTY0YzEwYmItOGE2Yy00M2JjLTgzZDMtNmIzMThjNmM3MzA1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFIVWs5VlVEb3lSRkJUT2pKRVZFVlRWRGt6TlRBdFNrRlFRVTVGUVZOVUlpd2lhbTlpVEc5allYUnBiMjRpT2lKcVlYQmhibVZoYzNRaWZRP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestHeaders": { "User-Agent": [ "FxVersion/4.700.22.55902", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.22000", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.73" + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.76" ] }, "RequestBody": "", @@ -2920,16 +687,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "2a9970d4-ca18-4b3c-aa3e-4b400a9c66b9" + "9f497118-e76e-4d0e-ac6e-03113e71fb6e" ], "x-ms-correlation-request-id": [ - "2a9970d4-ca18-4b3c-aa3e-4b400a9c66b9" + "9f497118-e76e-4d0e-ac6e-03113e71fb6e" ], "x-ms-routing-request-id": [ - "WESTUS:20230406T113231Z:2a9970d4-ca18-4b3c-aa3e-4b400a9c66b9" + "KOREACENTRAL:20230724T021203Z:9f497118-e76e-4d0e-ac6e-03113e71fb6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2938,7 +705,7 @@ "nosniff" ], "Date": [ - "Thu, 06 Apr 2023 11:32:30 GMT" + "Mon, 24 Jul 2023 02:12:03 GMT" ], "Expires": [ "-1" @@ -2953,9 +720,9 @@ ], "Names": { "Test-SetGatewayCredential": [ - "hdi-ps-test3375", - "group-ps-test5237", - "storagepstest9231" + "hdi-ps-test8876", + "group-ps-test9350", + "storagepstest896" ] }, "Variables": { diff --git a/src/HDInsight/HDInsight.Test/UnitTests/ConfigurationTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/ConfigurationTests.cs index fc8ad008bd18..4e47f9ec9692 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/ConfigurationTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/ConfigurationTests.cs @@ -14,7 +14,6 @@ using System.Collections; using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.Azure.Management.HDInsight.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using Xunit; @@ -122,14 +121,14 @@ private void CustomizeSpark(int sparkVersion) It.Is( c => c.Configurations != null && - ((sparkVersion == 1 && c.Configurations.ContainsKey(ConfigurationKey.SparkDefaults) && - c.Configurations[ConfigurationKey.SparkDefaults]["spark.executor.instances"].Equals(sparkDefaults["spark.executor.instances"]) && - c.Configurations.ContainsKey(ConfigurationKey.SparkThriftConf) && - c.Configurations[ConfigurationKey.SparkThriftConf]["spark.executor.cores"].Equals(sparkThriftConf["spark.executor.cores"])) || - (sparkVersion == 2 && c.Configurations.ContainsKey(ConfigurationKey.Spark2Defaults) && - c.Configurations[ConfigurationKey.Spark2Defaults]["spark.executor.instances"].Equals(sparkDefaults["spark.executor.instances"]) && - c.Configurations.ContainsKey(ConfigurationKey.Spark2ThriftConf) && - c.Configurations[ConfigurationKey.Spark2ThriftConf]["spark.executor.cores"].Equals(sparkThriftConf["spark.executor.cores"]))))), + ((sparkVersion == 1 && c.Configurations.ContainsKey(Constants.ConfigurationKey.SparkDefaults) && + c.Configurations[Constants.ConfigurationKey.SparkDefaults]["spark.executor.instances"].Equals(sparkDefaults["spark.executor.instances"]) && + c.Configurations.ContainsKey(Constants.ConfigurationKey.SparkThriftConf) && + c.Configurations[Constants.ConfigurationKey.SparkThriftConf]["spark.executor.cores"].Equals(sparkThriftConf["spark.executor.cores"])) || + (sparkVersion == 2 && c.Configurations.ContainsKey(Constants.ConfigurationKey.Spark2Defaults) && + c.Configurations[Constants.ConfigurationKey.Spark2Defaults]["spark.executor.instances"].Equals(sparkDefaults["spark.executor.instances"]) && + c.Configurations.ContainsKey(Constants.ConfigurationKey.Spark2ThriftConf) && + c.Configurations[Constants.ConfigurationKey.Spark2ThriftConf]["spark.executor.cores"].Equals(sparkThriftConf["spark.executor.cores"]))))), Times.Once); } } diff --git a/src/HDInsight/HDInsight.Test/UnitTests/GetClusterTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/GetClusterTests.cs index 764e29765cd8..123d9a0ee72c 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/GetClusterTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/GetClusterTests.cs @@ -13,12 +13,14 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; using System.Linq; using Xunit; +using System; +using Azure.Core; namespace Microsoft.Azure.Commands.HDInsight.Test { @@ -44,24 +46,14 @@ public void CanGetHDInsightCluster() { cmdlet.ClusterName = ClusterName; cmdlet.ResourceGroupName = ResourceGroupName; - var cluster = new Cluster(id: "id", name: ClusterName, location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux" - } - }; + + var cluster = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName, location: Location); + cluster.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + cluster.Properties.ClusterVersion = "3.6"; + cluster.Properties.ClusterState = "Running"; + cluster.Properties.ClusterDefinition.Kind = ClusterType; + cluster.Properties.QuotaInfoCoresUsed = 24; + cluster.Properties.OSType = "Linux"; hdinsightManagementMock.Setup(c => c.Get(ResourceGroupName, ClusterName)) .Returns(cluster) @@ -82,43 +74,24 @@ public void CanGetHDInsightCluster() public void CanListHDInsightClustersInRG() { cmdlet.ResourceGroupName = ResourceGroupName; - var cluster1 = new Cluster(id: "id", name: ClusterName + "1", location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux" - } - }; - var cluster2 = new Cluster(id: "id", name: ClusterName + "2", location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux" - } - }; + var cluster1 = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName + "1", location: Location); + cluster1.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + + cluster1.Properties.ClusterVersion = "3.6"; + cluster1.Properties.ClusterState = "Running"; + cluster1.Properties.ClusterDefinition.Kind = ClusterType; + cluster1.Properties.QuotaInfoCoresUsed = 24; + cluster1.Properties.OSType = "Linux"; + + var cluster2 = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName + "2", location: Location); + cluster2.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + + cluster2.Properties.ClusterVersion = "3.6"; + cluster2.Properties.ClusterState = "Running"; + cluster2.Properties.ClusterDefinition.Kind = ClusterType; + cluster2.Properties.QuotaInfoCoresUsed = 24; + cluster2.Properties.OSType = "Linux"; var listresponse = new[] { cluster1, cluster2 }; hdinsightManagementMock.Setup(c => c.ListClusters(ResourceGroupName)) @@ -146,43 +119,23 @@ public void CanListHDInsightClustersInRG() [Trait(Category.AcceptanceType, Category.CheckIn)] public void CanListHDInsightClusters() { - var cluster1 = new Cluster(id: "id", name: ClusterName + "1", location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux" - } - }; - - var cluster2 = new Cluster(id: "id", name: ClusterName + "2", location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux" - } - }; + var cluster1 = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName + "1", location: Location); + + cluster1.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + cluster1.Properties.ClusterVersion = "3.6"; + cluster1.Properties.ClusterState = "Running"; + cluster1.Properties.ClusterDefinition.Kind = ClusterType; + cluster1.Properties.QuotaInfoCoresUsed = 24; + cluster1.Properties.OSType = "Linux"; + + var cluster2 = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName + "2", location: Location); + + cluster2.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + cluster2.Properties.ClusterVersion = "3.6"; + cluster2.Properties.ClusterState = "Running"; + cluster2.Properties.ClusterDefinition.Kind = ClusterType; + cluster2.Properties.QuotaInfoCoresUsed = 24; + cluster2.Properties.OSType = "Linux"; var listresponse = new[] { cluster1, cluster2 }; hdinsightManagementMock.Setup(c => c.ListClusters()) diff --git a/src/HDInsight/HDInsight.Test/UnitTests/GetPropertiesTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/GetPropertiesTests.cs index c17c4dc33eaf..03a2c8328e3e 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/GetPropertiesTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/GetPropertiesTests.cs @@ -13,7 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.HDInsight.Models.Management; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Collections.Generic; @@ -43,20 +43,12 @@ public GetPropertiesTests(Xunit.Abstractions.ITestOutputHelper output) public void CanGetProperties() { var features = new string[] { "feature1", "feature2" }; - var versions = new Dictionary { { "key", new VersionsCapability() } }; - var regions = new Dictionary { { "eastus", new RegionsCapability() } }; - var capabilitiesResult = new CapabilitiesResult - { - Features = features, - Versions = versions, - Regions = regions - }; + var versions = new Dictionary { { "key", ArmHDInsightModelFactory.HDInsightVersionsCapability() } }; + var regions = new Dictionary { { "eastus", ArmHDInsightModelFactory.RegionsCapability() } }; - var billingResponseResult = new BillingResponseListResult() - { - VmSizes = new List(), - VmSizeFilters = new List() - }; + var capabilitiesResult = ArmHDInsightModelFactory.HDInsightCapabilitiesResult(versions, regions, features); + + var billingResponseResult = ArmHDInsightModelFactory.HDInsightBillingSpecsListResult(); var propertiesResponse = new AzureHDInsightCapabilities(capabilitiesResult, billingResponseResult); @@ -72,8 +64,9 @@ public void CanGetProperties() f.WriteObject( It.Is( resp => - resp.Features == propertiesResponse.Features - && resp.Regions["eastus"].Available == propertiesResponse.Regions["eastus"].Available + resp.Features[0] == propertiesResponse.Features[0] + && resp.Features[1] == propertiesResponse.Features[1] + && resp.Regions["eastus"].Available.Count == propertiesResponse.Regions["eastus"].Available.Count && resp.Versions.Count == propertiesResponse.Versions.Count), true), Times.Once); } diff --git a/src/HDInsight/HDInsight.Test/UnitTests/HttpTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/HttpTests.cs index af4a9947188c..33ffd533b861 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/HttpTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/HttpTests.cs @@ -13,7 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.HDInsight.Models.Management; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; @@ -46,38 +46,5 @@ public HttpTests(Xunit.Abstractions.ITestOutputHelper output) }; } - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void CanSetGatewayCredentialSupportsShouldProcess() - { - commandRuntimeMock.Setup(c => c.ShouldProcess(ClusterName, It.IsAny())).Returns(true); - - hdinsightManagementMock.Setup( - c => - c.UpdateGatewayCredential(ResourceGroupName, ClusterName, - It.Is( - param => - param.IsCredentialEnabled.HasValue && param.UserName == _httpCred.UserName && - param.Password == _httpCred.Password.ConvertToString()))) - .Verifiable(); - - var gatewaySettings = new GatewaySettings("true", _httpCred.UserName, _httpCred.Password.ConvertToString()); - - hdinsightManagementMock.Setup(c => c.GetGatewaySettings(ResourceGroupName, ClusterName)) - .Returns(gatewaySettings) - .Verifiable(); - - setcmdlet.ExecuteCmdlet(); - - commandRuntimeMock.VerifyAll(); - commandRuntimeMock.Verify( - f => f.WriteObject( - It.Is( - rsp => - rsp.IsCredentialEnabled == gatewaySettings.IsCredentialEnabled - && rsp.UserName == gatewaySettings.UserName - && rsp.Password == gatewaySettings.Password)), - Times.Once); - } } } diff --git a/src/HDInsight/HDInsight.Test/UnitTests/MonitoringTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/MonitoringTests.cs index eaa7ac8fdb20..2564f1bac8d9 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/MonitoringTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/MonitoringTests.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; @@ -44,7 +44,7 @@ public void EnableMonitoring() PrimaryKey = "" }; - var clusterMonitoringParams = new ClusterMonitoringRequest + var clusterMonitoringParams = new HDInsightClusterEnableClusterMonitoringContent { WorkspaceId = "", PrimaryKey = "" @@ -52,7 +52,7 @@ public void EnableMonitoring() hdinsightManagementMock.Setup( c => c.EnableMonitoring(ResourceGroupName, ClusterName, - It.Is( + It.Is( param => param.WorkspaceId == clusterMonitoringParams.WorkspaceId && param.PrimaryKey == clusterMonitoringParams.PrimaryKey))) .Verifiable(); @@ -75,11 +75,7 @@ public void GetMonitoring() }; hdinsightManagementMock.Setup(c => c.GetMonitoring(ResourceGroupName, ClusterName)) - .Returns(new ClusterMonitoringResponse - { - ClusterMonitoringEnabled = true, - WorkspaceId = "1d364e89-bb71-4503-aa3d-a23535aea7bd" - }) + .Returns(ArmHDInsightModelFactory.HDInsightClusterExtensionStatus(true,"1d364e89-bb71-4503-aa3d-a23535aea7bd")) .Verifiable(); getMonitoringcmdlet.ExecuteCmdlet(); diff --git a/src/HDInsight/HDInsight.Test/UnitTests/NewClusterTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/NewClusterTests.cs index 3472285e8715..4a0bfd6f020d 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/NewClusterTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/NewClusterTests.cs @@ -14,7 +14,7 @@ using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models.Management; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; @@ -23,6 +23,11 @@ using System.Linq; using System.Management.Automation; using Xunit; +using Azure.ResourceManager.HDInsight; +using Azure.Core; +using Azure.ResourceManager.Models; +using System; +using System.DirectoryServices.AccountManagement; namespace Microsoft.Azure.Commands.HDInsight.Test { @@ -64,24 +69,15 @@ public void CanCreateNewHDInsightCluster() cmdlet.StorageAccountKey = StorageKey; cmdlet.ClusterType = ClusterType; - var cluster = new Cluster(id: "id", name: ClusterName, location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux" - } - }; + var cluster = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName, location: Location); + cluster.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + + cluster.Properties.ClusterVersion = "3.6"; + cluster.Properties.ClusterState = "Running"; + cluster.Properties.ClusterDefinition.Kind = ClusterType; + cluster.Properties.QuotaInfoCoresUsed = 24; + cluster.Properties.OSType = "Linux"; + var coreConfigs = new Dictionary { {"fs.defaultFS", "wasb://giyertestcsmv2@" + StorageName}, @@ -102,13 +98,14 @@ public void CanCreateNewHDInsightCluster() {"core-site", coreConfigs}, {"gateway", gatewayConfigs} }; - var serializedConfig = JsonConvert.SerializeObject(configurations); + var serializedConfig = BinaryData.FromObjectAsJson(configurations); cluster.Properties.ClusterDefinition.Configurations = serializedConfig; - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" )) ).Returns(cluster).Verifiable(); @@ -166,7 +163,7 @@ public void CanCreateNewHDInsightCluster_Secure_Linux() OrganizationalUnitDN = "OUDN", LdapsUrls = new[] { - "ldapsurl" + "https://ldapsurl.test" }, ClusterUsersGroupDNs = new[] { @@ -218,62 +215,34 @@ private void CreateNewHDInsightCluster( } // Construct cluster Object - var cluster = new Cluster(id: "id", name: ClusterName, location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = HdiVersion, - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux", - ComputeProfile = new ComputeProfile() - { - Roles = new List() - } - } - }; + var cluster = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName, location: Location); + cluster.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + cluster.Properties.ClusterVersion = HdiVersion; + cluster.Properties.ClusterState = "Running"; + cluster.Properties.ClusterDefinition.Kind = ClusterType; + cluster.Properties.QuotaInfoCoresUsed = 24; + cluster.Properties.OSType = "Linux"; if (workerNodeDataDisks > 0) { - cluster.Properties.ComputeProfile.Roles.Add(new Role() - { - Name = "workernode", - DataDisksGroups = new List() - { - new DataDisksGroups() - { - DisksPerNode = workerNodeDataDisks - } - } - }); + HDInsightClusterRole role = new HDInsightClusterRole(); + role.Name = "workernode"; + role.DataDisksGroups.Add(new HDInsightClusterDataDiskGroup() { DisksPerNode = workerNodeDataDisks }); + cluster.Properties.ComputeRoles.Add(role); } if (addSecurityProfileInresponse) { - cluster.Properties.SecurityProfile = new SecurityProfile() + cluster.Properties.SecurityProfile = new HDInsightSecurityProfile() { Domain = "domain.com", DomainUsername = "username", DomainUserPassword = "pass", OrganizationalUnitDN = "OUDN", - LdapsUrls = new[] - { - "ldapsurl" - }, - ClusterUsersGroupDNs = new[] - { - "userGroupDn" - }, - AaddsResourceId= "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fakerg/providers/Microsoft.AAD/domainServices/domain.com" + AaddsResourceId = new ResourceIdentifier("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fakerg/providers/Microsoft.AAD/domainServices/domain.com") }; + cluster.Properties.SecurityProfile.LdapUris.Add(new Uri("https://ldapsurl.test")); + cluster.Properties.SecurityProfile.ClusterUsersGroupDNs.Add("userGroupDn"); } var coreConfigs = new Dictionary @@ -296,14 +265,14 @@ private void CreateNewHDInsightCluster( {"core-site", coreConfigs}, {"gateway", gatewayConfigs} }; - var serializedConfig = JsonConvert.SerializeObject(configurations); + var serializedConfig = BinaryData.FromObjectAsJson(configurations); cluster.Properties.ClusterDefinition.Configurations = serializedConfig; // Setup Mocks and verify successfull GET response - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" )) ).Returns(cluster).Verifiable(); @@ -346,27 +315,19 @@ public void CanCreateNewHDInsightCluster_LinuxComponentVersion() cmdlet.SshCredential = _sshCred; cmdlet.ComponentVersion = componentVersion; - var cluster = new Cluster(id: "id", name: ClusterName, location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = sparkClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux" - } - }; + var cluster = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName, location: Location); + cluster.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + cluster.Properties.ClusterVersion = "3.6"; + cluster.Properties.ClusterState = "Running"; + cluster.Properties.ClusterDefinition.Kind = sparkClusterType; + cluster.Properties.QuotaInfoCoresUsed = 24; + cluster.Properties.OSType = "Linux"; - cluster.Properties.ClusterDefinition.ComponentVersion = componentVersion; + foreach(var item in componentVersion) + { + cluster.Properties.ClusterDefinition.ComponentVersion.Add(item.Key,item.Value); + } var coreConfigs = new Dictionary { {"fs.defaultFS", "wasb://giyertestcsmv2@" + StorageName}, @@ -387,20 +348,20 @@ public void CanCreateNewHDInsightCluster_LinuxComponentVersion() {"core-site", coreConfigs}, {"gateway", gatewayConfigs} }; - var serializedConfig = JsonConvert.SerializeObject(configurations); + var serializedConfig = BinaryData.FromObjectAsJson(configurations); cluster.Properties.ClusterDefinition.Configurations = serializedConfig; - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == sparkClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" )) ).Returns(cluster).Verifiable(); - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" ))) .Returns(cluster) .Verifiable(); @@ -416,7 +377,7 @@ public void CanCreateNewHDInsightCluster_LinuxComponentVersion() clusterout.CoresUsed == 24 && clusterout.Location == Location && clusterout.Name == ClusterName && - clusterout.OperatingSystemType.ToString() == "Linux" && + clusterout.OperatingSystemType == "Linux" && clusterout.ComponentVersion[0] == componentVersionResponse)), Times.Once); } @@ -457,43 +418,23 @@ public void CanCreateNewHDInsightCluster_Disk_Encryption() cmdlet.EncryptionVaultUri = EncryptionVaultUri; cmdlet.AssignedIdentity = AssignedIdentity; - var ClusterIdentity = new ClusterIdentity - { - Type = ResourceIdentityType.UserAssigned, - UserAssignedIdentities = new Dictionary - { - { - AssignedIdentity, new UserAssignedIdentity(principalId:"PrincipalId",clientId:"ClientId") - } - } - }; + var ClusterIdentity = new ManagedServiceIdentity(ManagedServiceIdentityType.UserAssigned); + ClusterIdentity.UserAssignedIdentities.Add(new ResourceIdentifier(AssignedIdentity), new UserAssignedIdentity()); + var cluster = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName, location: Location, identity:ClusterIdentity); + cluster.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); - var cluster = new Cluster(id: "id", name: ClusterName, identity:ClusterIdentity, location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = sparkClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux", - DiskEncryptionProperties = new DiskEncryptionProperties() - { - KeyName = EncryptionKeyName, - KeyVersion = EncryptionKeyVersion, - VaultUri = EncryptionVaultUri, - EncryptionAlgorithm = EncryptionAlgorithm, - MsiResourceId = AssignedIdentity - }, - }, - }; + cluster.Properties.ClusterVersion = "3.6"; + cluster.Properties.ClusterState = "Running"; + cluster.Properties.ClusterDefinition.Kind = sparkClusterType; + cluster.Properties.QuotaInfoCoresUsed = 24; + cluster.Properties.OSType = "Linux"; + + cluster.Properties.DiskEncryptionProperties = new HDInsightDiskEncryptionProperties(); + cluster.Properties.DiskEncryptionProperties.KeyName = EncryptionKeyName; + cluster.Properties.DiskEncryptionProperties.KeyVersion = EncryptionKeyVersion; + cluster.Properties.DiskEncryptionProperties.VaultUri = new Uri(EncryptionVaultUri); + cluster.Properties.DiskEncryptionProperties.EncryptionAlgorithm = EncryptionAlgorithm; + cluster.Properties.DiskEncryptionProperties.MsiResourceId = new ResourceIdentifier(AssignedIdentity); var coreConfigs = new Dictionary { @@ -515,13 +456,13 @@ public void CanCreateNewHDInsightCluster_Disk_Encryption() {"core-site", coreConfigs}, {"gateway", gatewayConfigs} }; - var serializedConfig = JsonConvert.SerializeObject(configurations); + var serializedConfig = BinaryData.FromObjectAsJson(configurations); cluster.Properties.ClusterDefinition.Configurations = serializedConfig; - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == sparkClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" )) ).Returns(cluster).Verifiable(); @@ -539,12 +480,11 @@ public void CanCreateNewHDInsightCluster_Disk_Encryption() clusterout.OperatingSystemType.ToString() == "Linux" && clusterout.DiskEncryption.KeyName == EncryptionKeyName && clusterout.DiskEncryption.KeyVersion == EncryptionKeyVersion && - clusterout.DiskEncryption.VaultUri == EncryptionVaultUri && + clusterout.DiskEncryption.VaultUri.OriginalString == EncryptionVaultUri && clusterout.DiskEncryption.EncryptionAlgorithm == EncryptionAlgorithm && clusterout.DiskEncryption.MsiResourceId == AssignedIdentity && - clusterout.AssignedIdentity.Type == ResourceIdentityType.UserAssigned && - clusterout.AssignedIdentity.UserAssignedIdentities[AssignedIdentity].ClientId == "ClientId" && - clusterout.AssignedIdentity.UserAssignedIdentities[AssignedIdentity].PrincipalId == "PrincipalId" + clusterout.AssignedIdentity.Type == ManagedServiceIdentityType.UserAssigned && + clusterout.AssignedIdentity.UserAssignedIdentities.ContainsKey(new ResourceIdentifier(AssignedIdentity)) )),Times.Once); } @@ -561,18 +501,18 @@ public void TestStorageAccountTypeDefaultsToAzureStorage() cmdlet.StorageAccountKey = StorageKey; cmdlet.ClusterType = ClusterType; - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" ))); cmdlet.ExecuteCmdlet(); - hdinsightManagementMock.Verify(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Verify(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" )), Times.Once); } @@ -591,18 +531,18 @@ public void TestStorageAccountTypeAzureStorage() cmdlet.ClusterType = ClusterType; cmdlet.StorageAccountType = StorageType.AzureStorage; - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" ))); cmdlet.ExecuteCmdlet(); - hdinsightManagementMock.Verify(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Verify(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" )), Times.Once); } @@ -622,14 +562,14 @@ public void TestStorageAccountTypeAzureDataLakeStore() cmdlet.ClusterType = ClusterType; cmdlet.StorageAccountType = StorageType.AzureDataLakeStore; - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.IsAny())); + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.IsAny())); cmdlet.ExecuteCmdlet(); - hdinsightManagementMock.Verify(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Verify(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" )), Times.Once); } diff --git a/src/HDInsight/HDInsight.Test/UnitTests/PremiumClusterTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/PremiumClusterTests.cs index ebeba7345077..dc199f658cfa 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/PremiumClusterTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/PremiumClusterTests.cs @@ -13,7 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; @@ -21,6 +21,8 @@ using System.Collections.Generic; using System.Management.Automation; using Xunit; +using Azure.Core; +using System; namespace Microsoft.Azure.Commands.HDInsight.Test { @@ -60,25 +62,17 @@ public void CanCreateNewPremiumHDInsightCluster() cmdlet.ClusterType = ClusterType; // cmdlet.ClusterTier = Tier.Premium; cmdlet.SshCredential = _httpCred; - var cluster = new Cluster(id: "id", name: ClusterName, location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux", - Tier = "Premium" - } - }; + + var cluster = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName, location: Location); + cluster.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + + cluster.Properties.ClusterVersion = "3.6"; + cluster.Properties.ClusterState = "Running"; + cluster.Properties.ClusterDefinition.Kind = ClusterType; + cluster.Properties.QuotaInfoCoresUsed = 24; + cluster.Properties.OSType = "Linux"; + cluster.Properties.Tier = "Premium"; + var coreConfigs = new Dictionary { {"fs.defaultFS", "wasb://giyertestcsmv2@" + StorageName}, @@ -99,13 +93,13 @@ public void CanCreateNewPremiumHDInsightCluster() {"core-site", coreConfigs}, {"gateway", gatewayConfigs} }; - var serializedConfig = JsonConvert.SerializeObject(configurations); + var serializedConfig = BinaryData.FromObjectAsJson(configurations); cluster.Properties.ClusterDefinition.Configurations = serializedConfig; - hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( + hdinsightManagementMock.Setup(c => c.CreateCluster(ResourceGroupName, ClusterName, It.Is( parameters => parameters.Location == Location && parameters.Properties.ClusterDefinition.Kind == ClusterType && - parameters.Properties.OsType == "Linux" + parameters.Properties.OSType == "Linux" ))) .Returns(cluster) .Verifiable(); @@ -121,8 +115,8 @@ public void CanCreateNewPremiumHDInsightCluster() clusterout.CoresUsed == 24 && clusterout.Location == Location && clusterout.Name == ClusterName && - clusterout.OperatingSystemType.ToString() == "Linux" && - clusterout.ClusterTier.ToString() == "Premium")), + clusterout.OperatingSystemType == "Linux" && + clusterout.ClusterTier == "Premium")), Times.Once); } } diff --git a/src/HDInsight/HDInsight.Test/UnitTests/ResizeClusterTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/ResizeClusterTests.cs index b1eb5dfa4139..e4f43cd52c42 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/ResizeClusterTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/ResizeClusterTests.cs @@ -13,11 +13,12 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System.Net; using Xunit; +using Azure.Core; namespace Microsoft.Azure.Commands.HDInsight.Test { @@ -45,24 +46,14 @@ public ResizeClusterTests(Xunit.Abstractions.ITestOutputHelper output) [Trait(Category.AcceptanceType, Category.CheckIn)] public void CanResizeCluster() { - var cluster = new Cluster(id: "id", name: ClusterName + "1", location: Location) - { - Location = Location, - Properties = new ClusterGetProperties - { - ClusterVersion = "3.6", - ClusterState = "Running", - ClusterDefinition = new ClusterDefinition - { - Kind = ClusterType - }, - QuotaInfo = new QuotaInfo - { - CoresUsed = 24 - }, - OsType = "Linux" - }, - }; + var cluster = ArmHDInsightModelFactory.HDInsightClusterData(id: new ResourceIdentifier("id"), name: ClusterName + "2", location: Location); + cluster.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + + cluster.Properties.ClusterVersion = "3.6"; + cluster.Properties.ClusterState = "Running"; + cluster.Properties.ClusterDefinition.Kind = ClusterType; + cluster.Properties.QuotaInfoCoresUsed = 24; + cluster.Properties.OSType = "Linux"; hdinsightManagementMock.Setup(c => c.Get(ResourceGroupName, ClusterName)) .Returns(cluster) @@ -75,7 +66,7 @@ public void CanResizeCluster() hdinsightManagementMock.Setup( c => c.ResizeCluster(ResourceGroupName, ClusterName, - It.Is( + It.Is( param => param.TargetInstanceCount == targetcount))) .Verifiable(); diff --git a/src/HDInsight/HDInsight.Test/UnitTests/ScriptActionTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/ScriptActionTests.cs index 80b458f94ec2..59a4fdc5fde8 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/ScriptActionTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/ScriptActionTests.cs @@ -13,13 +13,14 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.HDInsight.Models.Management; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Moq; using System; using System.Collections.Generic; using System.Linq; using Xunit; +using Azure.ResourceManager.HDInsight; namespace Microsoft.Azure.Commands.HDInsight.Test { @@ -34,52 +35,44 @@ public ScriptActionTests(Xunit.Abstractions.ITestOutputHelper output) base.SetupTestsForManagement(); - scriptActionDetail = new RuntimeScriptActionDetail + scriptActionDetail = ArmHDInsightModelFactory.RuntimeScriptActionDetail ( applicationName: "AppName", debugInformation: "DebugInfo", - endTime: new DateTime(2016, 1, 1).ToString(), + endOn: new DateTime(2016, 1, 1), executionSummary: - new List + new List { - new Microsoft.Azure.Management.HDInsight.Models.ScriptActionExecutionSummary - ( - status: "Succeeded", - instanceCount: 4 - ) + ArmHDInsightModelFactory.ScriptActionExecutionSummary("Succeeded",4) }, name: "ScriptName", operation: "PostCreation", parameters: "Parameters", roles: new List { "HeadNode", "WorkerNode" }, scriptExecutionId: DateTime.UtcNow.Ticks, - startTime: new DateTime(2016, 1, 2).ToString(), + startOn: new DateTime(2016, 1, 2), status: "Succeeded", - uri: "http://bing.com" + uri: new Uri("http://bing.com") ); - scriptActionDetailWithApplicationName = new RuntimeScriptActionDetail + scriptActionDetailWithApplicationName = ArmHDInsightModelFactory.RuntimeScriptActionDetail ( applicationName: "AppName", debugInformation: "DebugInfo", - endTime: new DateTime(2016, 1, 1).ToString(), + endOn: new DateTime(2016, 1, 1), executionSummary: - new List + new List { - new Microsoft.Azure.Management.HDInsight.Models.ScriptActionExecutionSummary - ( - status: "Succeeded", - instanceCount: 1 - ) + ArmHDInsightModelFactory.ScriptActionExecutionSummary("Succeeded",1) }, name: "ScriptNameWithApp", operation: "PostCreation", parameters: "Parameters", roles: new List { "EdgeNode" }, scriptExecutionId: DateTime.UtcNow.Ticks, - startTime: new DateTime(2016, 1, 2).ToString(), + startOn: new DateTime(2016, 1, 2), status: "Succeeded", - uri: "http://bing.com" + uri: new Uri("http://bing.com") ); } @@ -94,14 +87,14 @@ public void SubmitScriptAction() ClusterName = ClusterName, ResourceGroupName = ResourceGroupName, Name = scriptActionDetail.Name, - Uri = new Uri(scriptActionDetail.Uri), + Uri = scriptActionDetail.Uri, Parameters = scriptActionDetail.Parameters, NodeTypes = scriptActionDetail.Roles.Select(r => (RuntimeScriptActionClusterNodeType)Enum.Parse(typeof(RuntimeScriptActionClusterNodeType), r, true)).ToArray(), PersistOnSuccess = true }; hdinsightManagementMock.Setup(c => c.ExecuteScriptActions(ResourceGroupName, ClusterName, - It.Is(param => CompareScriptActions(param.ScriptActions.First(), scriptActionDetail) && param.PersistOnSuccess == true))) + It.Is(param => CompareScriptActions(param.ScriptActions.First(), scriptActionDetail) && param.PersistOnSuccess == true))) .Verifiable(); submitCmdlet.ExecuteCmdlet(); @@ -112,10 +105,21 @@ public void SubmitScriptAction() scriptOperationResource => CompareScriptActions(scriptOperationResource, new AzureHDInsightRuntimeScriptAction(scriptActionDetail))))); hdinsightManagementMock.VerifyAll(); - hdinsightManagementMock.Verify(c => c.ExecuteScriptActions(ResourceGroupName, ClusterName, It.IsAny()), + hdinsightManagementMock.Verify(c => c.ExecuteScriptActions(ResourceGroupName, ClusterName, It.IsAny()), Times.Once); } + [Fact] + public void TestOSProfile() + { + HDInsightClusterRole hDInsightClusterRole = new HDInsightClusterRole(); + HDInsightLinuxOSProfile osp = new HDInsightLinuxOSProfile(); + osp.Username = "username"; + HDInsightClusterData hDInsightClusterData = new HDInsightClusterData("west us"); + hDInsightClusterData.Properties = new HDInsightClusterProperties(new HDInsightClusterDefinition()); + hDInsightClusterData.Properties.ClusterVersion = "1.0.0"; + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] @@ -128,7 +132,7 @@ public void SubmitScriptActionOnEdgeNode() ClusterName = ClusterName, ResourceGroupName = ResourceGroupName, Name = scriptActionDetailWithApplicationName.Name, - Uri = new Uri(scriptActionDetailWithApplicationName.Uri), + Uri = scriptActionDetailWithApplicationName.Uri, Parameters = scriptActionDetailWithApplicationName.Parameters, ApplicationName = scriptActionDetailWithApplicationName.ApplicationName, NodeTypes = scriptActionDetailWithApplicationName.Roles.Select(r => (RuntimeScriptActionClusterNodeType)Enum.Parse(typeof(RuntimeScriptActionClusterNodeType), r, true)).ToArray(), @@ -136,7 +140,7 @@ public void SubmitScriptActionOnEdgeNode() }; hdinsightManagementMock.Setup(c => c.ExecuteScriptActions(ResourceGroupName, ClusterName, - It.Is(param => CompareScriptActions(param.ScriptActions.First(), scriptActionDetailWithApplicationName) && param.PersistOnSuccess == false))) + It.Is(param => CompareScriptActions(param.ScriptActions.First(), scriptActionDetailWithApplicationName) && param.PersistOnSuccess == false))) .Verifiable(); submitCmdlet.ExecuteCmdlet(); @@ -146,9 +150,9 @@ public void SubmitScriptActionOnEdgeNode() It.Is( scriptOperationResource => CompareScriptActions(scriptOperationResource, new AzureHDInsightRuntimeScriptAction(scriptActionDetailWithApplicationName)) && - scriptOperationResource.OperationState == AsyncOperationState.Succeeded.ToString()))); + scriptOperationResource.OperationState == HDInsightAsyncOperationState.Succeeded.ToString()))); hdinsightManagementMock.VerifyAll(); - hdinsightManagementMock.Verify(c => c.ExecuteScriptActions(ResourceGroupName, ClusterName, It.IsAny()), + hdinsightManagementMock.Verify(c => c.ExecuteScriptActions(ResourceGroupName, ClusterName, It.IsAny()), Times.Once); } diff --git a/src/HDInsight/HDInsight.Test/UnitTests/SecurityProfileTests.cs b/src/HDInsight/HDInsight.Test/UnitTests/SecurityProfileTests.cs index c6a2c4b6239d..238affae83a9 100644 --- a/src/HDInsight/HDInsight.Test/UnitTests/SecurityProfileTests.cs +++ b/src/HDInsight/HDInsight.Test/UnitTests/SecurityProfileTests.cs @@ -13,6 +13,7 @@ // ---------------------------------------------------------------------------------- using System.Management.Automation; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.WindowsAzure.Commands.ScenarioTest; @@ -60,7 +61,7 @@ public void CanCreateNewSecurityProfile() f.WriteObject( It.Is( c => - c.ClusterType == ClusterType && + c.ClusterType == "Hadoop" && c.AdditionalStorageAccounts.Count == 0 && c.Configurations.Count == 0 && string.IsNullOrEmpty(c.WorkerNodeSize) && diff --git a/src/HDInsight/HDInsight/Az.HDInsight.psd1 b/src/HDInsight/HDInsight/Az.HDInsight.psd1 index 27315ad9498a..8526dec12f85 100644 --- a/src/HDInsight/HDInsight/Az.HDInsight.psd1 +++ b/src/HDInsight/HDInsight/Az.HDInsight.psd1 @@ -56,7 +56,7 @@ DotNetFrameworkVersion = '4.7.2' RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.13.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = 'Microsoft.Azure.Management.HDInsight.dll', +RequiredAssemblies = 'Azure.ResourceManager.HDInsight.dll', 'Microsoft.Azure.Management.HDInsight.Job.dll', 'Microsoft.WindowsAzure.Storage.dll' diff --git a/src/HDInsight/HDInsight/ChangeLog.md b/src/HDInsight/HDInsight/ChangeLog.md index 88318bf47505..aa21b200cee2 100644 --- a/src/HDInsight/HDInsight/ChangeLog.md +++ b/src/HDInsight/HDInsight/ChangeLog.md @@ -18,12 +18,17 @@ - Additional information about change #1 --> ## Upcoming Release +* This change removed warning messages previously added for break changes in the new version. -## Version 6.0.1 -* This change adds some warning messages to the incoming break changes for the next version, with detailed information as follows: - * Added warning message for planning to replace the type of property `DiskEncryption` of type `Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster` from `Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties` to `Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties`. - * Added warning message for planning to replace the type of property `WorkerNodeDataDisksGroups` of type `Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster` from `List` to `List`. - * Added warning message for planning to replace the parameter `NodeType` type from `Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType` to `Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType`. +* Added parameter `-EnableSecureChannel` to support selecting use secure channel during creation: + - The parameter would force to true if the cluster created based on a stroage account that secure transfer enabled, no matter it use 'blob' or 'dfs' type. +* Fixed bug cannot get storage account info(gen2). + +* Breaking Change: + - The cmdlet `Add-AzHDInsightScriptAction` no longer supports the type 'Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType' for parameter 'NodeType'. + - Changed the type of parameter "DiskEncryption" from `Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties` to `Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties` in cmdlets `New-AzHDInsightCluster` `Get-AzHDInsightCluster` `Get-AzHDInsightHost` `Enable-AzHDInsightAzureMonitor` `Get-AzHDInsightClusterAutoscaleConfiguration` `Remove-AzHDInsightClusterAutoscaleConfiguration` `Set-AzHDInsightClusterAutoscaleConfiguration` `Set-AzHDInsightClusterDiskEncryptionKey` `Set-AzHDInsightClusterSize` and `Set-AzHDInsightGatewayCredential`. + - Changed the type `Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType` to `Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType` in cmdlets `Add-AzHDInsightClusterIdentity` `Add-AzHDInsightComponentVersion` `Add-AzHDInsightConfigValue` `Add-AzHDInsightMetastore` `Add-AzHDInsightScriptAction` `Add-AzHDInsightScriptAction` `Add-AzHDInsightSecurityProfile` `Add-AzHDInsightStorage` `New-AzHDInsightCluster` `Set-AzHDInsightDefaultStorage` and `New-AzHDInsightClusterConfig`. + - Changed the type of parameter "WorkerNodeDataDisksGroups" from `List` to `List` in cmdlets `Disable-AzHDInsightAzureMonitor` `Enable-AzHDInsightAzureMonitor` `Get-AzHDInsightAzureMonitor` `Get-AzHDInsightCluster` `Get-AzHDInsightClusterAutoscaleConfiguration` `Get-AzHDInsightHost` `Get-AzHDInsightProperty` `New-AzHDInsightCluster` `Remove-AzHDInsightClusterAutoscaleConfiguration` `Set-AzHDInsightClusterAutoscaleConfiguration` `Set-AzHDInsightClusterSize` `Set-AzHDInsightGatewayCredential` and `New-AzHDInsightClusterConfig`. ## Version 6.0.0 * Breaking Change: diff --git a/src/HDInsight/HDInsight/ClusterConfigurationUtils.cs b/src/HDInsight/HDInsight/ClusterConfigurationUtils.cs index 28411918243a..70402e9fde90 100644 --- a/src/HDInsight/HDInsight/ClusterConfigurationUtils.cs +++ b/src/HDInsight/HDInsight/ClusterConfigurationUtils.cs @@ -44,8 +44,8 @@ public static string GetResourceGroupFromClusterId(string clusterId) public static AzureHDInsightDefaultStorageAccount GetDefaultStorageAccountDetails( string version, - IDictionary coreSiteConfiguration, - IDictionary clusterIdentityConfiguration = null) + IReadOnlyDictionary coreSiteConfiguration, + IReadOnlyDictionary clusterIdentityConfiguration = null) { string key = version.Equals("2.1") ? Constants.ClusterConfiguration.DefaultStorageAccountNameKeyOld : Constants.ClusterConfiguration.DefaultStorageAccountNameKey; @@ -55,6 +55,7 @@ public static AzureHDInsightDefaultStorageAccount GetDefaultStorageAccountDetail const string WasbPrefix = "wasb://"; const string SecureWasbPrefix = "wasbs://"; const string AdlsGen2Prefix = "abfs://"; + const string AdlsGen2TLSPrefix = "abfss://"; if (coreSiteConfiguration.TryGetValue(key, out defaultFSUrl)) { @@ -102,7 +103,7 @@ public static AzureHDInsightDefaultStorageAccount GetDefaultStorageAccountDetail storageAccountKey: storageAccountKey ); } - else if (defaultFSUrl.StartsWith(AdlsGen2Prefix)) + else if (defaultFSUrl.StartsWith(AdlsGen2Prefix) || defaultFSUrl.StartsWith(AdlsGen2TLSPrefix)) { string[] accountAndFileSystem; accountAndFileSystem = defaultFSUrl.Substring(AdlsGen2Prefix.Length).Split('@'); @@ -113,7 +114,7 @@ public static AzureHDInsightDefaultStorageAccount GetDefaultStorageAccountDetail return null; } - public static List GetAdditionStorageAccounts(IDictionary configuration, string defaultAccount) + public static List GetAdditionStorageAccounts(IReadOnlyDictionary configuration, string defaultAccount) { // Parse the storage account names from the key and exclude the default one return (from key in configuration.Keys diff --git a/src/HDInsight/HDInsight/ClusterCreateHelper.cs b/src/HDInsight/HDInsight/ClusterCreateHelper.cs index 5edd92847000..6d2f92887515 100644 --- a/src/HDInsight/HDInsight/ClusterCreateHelper.cs +++ b/src/HDInsight/HDInsight/ClusterCreateHelper.cs @@ -11,8 +11,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.Core; +using Azure.ResourceManager.HDInsight.Models; +using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.WindowsAzure.Commands.Common; +using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; @@ -97,37 +100,40 @@ public static void AddDataLakeStorageGen1IdentityToIdentityConfig(Guid applicati configurations[Constants.ConfigurationKey.ClusterIdentity] = datalakeConfig; } - public static StorageAccount CreateAzureStorageAccount(string clusterName, string storageResourceId, string storageAccountkey, string storageContainer, string defaultStorageSuffix) + public static HDInsightStorageAccountInfo CreateAzureStorageAccount(string clusterName, string storageResourceId, string storageAccountkey, string storageContainer, bool? enableSecureChannel, string defaultStorageSuffix) { storageContainer = storageContainer ?? clusterName.ToLower(); string storageAccountName = Utils.GetResourceNameFromResourceId(storageResourceId); storageAccountName = storageAccountName + string.Format(Constants.StorageConfigurations.BlobStorageSuffixValueFormat, defaultStorageSuffix); - return new StorageAccount() + HDInsightStorageAccountInfo storageAccountInfo = new HDInsightStorageAccountInfo() { Name = storageAccountName, IsDefault = true, Container = storageContainer, Key = storageAccountkey, - ResourceId = storageResourceId + ResourceId = new ResourceIdentifier(storageResourceId), + EnableSecureChannel = enableSecureChannel }; + return storageAccountInfo; } - public static StorageAccount CreateAdlsGen2StorageAccount(string clusterName, string storageResourceId, string storageAccountkey, string storageFileSystem, string msiResourceId, string defaultStorageSuffix) + public static HDInsightStorageAccountInfo CreateAdlsGen2StorageAccount(string clusterName, string storageResourceId, string storageAccountkey, string storageFileSystem, bool? enableSecureChannel, string msiResourceId, string defaultStorageSuffix) { storageFileSystem = storageFileSystem ?? clusterName.ToLower(); string storageAccountName = Utils.GetResourceNameFromResourceId(storageResourceId); storageAccountName = storageAccountName + string.Format(Constants.StorageConfigurations.Adlsgen2StorageSuffixValueFormat, defaultStorageSuffix); - return new StorageAccount() + return new HDInsightStorageAccountInfo() { Name = storageAccountName, IsDefault = true, FileSystem = storageFileSystem, Key = storageAccountkey, - MsiResourceId = msiResourceId, - ResourceId = storageResourceId + MsiResourceId = new ResourceIdentifier(msiResourceId), + ResourceId = new ResourceIdentifier(storageResourceId), + EnableSecureChannel = enableSecureChannel }; } @@ -204,70 +210,63 @@ public static void AddCustomAmbariDatabaseToConfigurations(AzureHDInsightMetasto }); } - public static VirtualNetworkProfile CreateVirtualNetworkProfile(string virtualNetworkId, string subnetName) + public static HDInsightVirtualNetworkProfile CreateVirtualNetworkProfile(string virtualNetworkId, string subnetName) { if (string.IsNullOrEmpty(virtualNetworkId) && string.IsNullOrEmpty(subnetName)) { return null; } - VirtualNetworkProfile vnetProfile = new VirtualNetworkProfile(virtualNetworkId, string.Format("{0}/subnets/{1}", virtualNetworkId, subnetName)); + HDInsightVirtualNetworkProfile vnetProfile = new HDInsightVirtualNetworkProfile() + { + Id = new ResourceIdentifier(virtualNetworkId), + Subnet = string.Format("{0}/subnets/{1}", virtualNetworkId, subnetName) + }; return vnetProfile; } - public static OsProfile CreateOsProfile(PSCredential sshCredential, string sshPublicKey) + public static HDInsightLinuxOSProfile CreateOsProfile(PSCredential sshCredential, string sshPublicKey) { string sshUserName = sshCredential?.UserName; string sshPassword = sshCredential?.Password?.ConvertToString(); - List sshPublicKeys = new List(); + + HDInsightLinuxOSProfile linuxOSProfile = new HDInsightLinuxOSProfile + { + Password = sshPassword, + Username = sshUserName + }; + if (!string.IsNullOrEmpty(sshPublicKey)) { - sshPublicKeys.Add(new SshPublicKey + linuxOSProfile.SshPublicKeys.Add(new HDInsightSshPublicKey { CertificateData = sshPublicKey }); } - SshProfile sshProfile = null; - if (sshPublicKeys.Count > 0) - { - sshProfile = new SshProfile - { - PublicKeys = sshPublicKeys.ToArray() - }; - } - - return new OsProfile - { - LinuxOperatingSystemProfile = new LinuxOperatingSystemProfile - { - SshProfile = sshProfile, - Password = sshPassword, - Username = sshUserName - } - }; + return linuxOSProfile; } - public static ComputeProfile CreateComputeProfile(OsProfile osProfile, VirtualNetworkProfile vnetProfile, Dictionary> clusterScriptActions, string clusterType, int workerNodeCount, string headNodeSize, string workerNodeSize, string zookeeperNodeSize = null, string edgeNodeSize = null, bool isKafakaRestProxyEnable=false, string kafkaManagementNodeSize = null, bool isIDBrokerEnable = false, Dictionary> defaultVmSizeConfigurations=null) + public static IList CreateComputeProfile(HDInsightLinuxOSProfile osProfile, HDInsightVirtualNetworkProfile vnetProfile, Dictionary> clusterScriptActions, string clusterType, int workerNodeCount, string headNodeSize, string workerNodeSize, string zookeeperNodeSize = null, string edgeNodeSize = null, bool isKafakaRestProxyEnable=false, string kafkaManagementNodeSize = null, bool isIDBrokerEnable = false, Dictionary> defaultVmSizeConfigurations=null) { - List roles = new List(); + List roles = new List(); // Create head node headNodeSize = headNodeSize ?? GetNodeSize(clusterType, Constants.ClusterRoleType.HeadNodeRole, defaultVmSizeConfigurations); - List headNodeScriptActions = GetScriptActionsForRoleType(clusterScriptActions, ClusterNodeType.HeadNode); - Role headNode = CreateHeadNodeRole(osProfile, vnetProfile, headNodeScriptActions, headNodeSize); + List headNodeScriptActions = GetScriptActionsForRoleType(clusterScriptActions, RuntimeScriptActionClusterNodeType.HeadNode); + HDInsightClusterRole headNode = CreateHeadNodeRole(osProfile, vnetProfile, headNodeScriptActions, headNodeSize); roles.Add(headNode); // Create worker node workerNodeSize = workerNodeSize ?? GetNodeSize(clusterType, Constants.ClusterRoleType.WorkerNodeRole, defaultVmSizeConfigurations); - List workerNodeScriptActions = GetScriptActionsForRoleType(clusterScriptActions, ClusterNodeType.WorkerNode); - Role workerNode = CreateWorkerNodeRole(osProfile, vnetProfile, workerNodeScriptActions, workerNodeCount, workerNodeSize); + List workerNodeScriptActions = GetScriptActionsForRoleType(clusterScriptActions, RuntimeScriptActionClusterNodeType.WorkerNode); + HDInsightClusterRole workerNode = CreateWorkerNodeRole(osProfile, vnetProfile, workerNodeScriptActions, workerNodeCount, workerNodeSize); roles.Add(workerNode); // Create Zookeeper Node zookeeperNodeSize= zookeeperNodeSize?? GetNodeSize(clusterType, Constants.ClusterRoleType.ZookeeperNodeRole, defaultVmSizeConfigurations); - List zookeeperNodeScriptActions = GetScriptActionsForRoleType(clusterScriptActions, ClusterNodeType.ZookeeperNode); - Role zookeeperNode = CreateZookeeperNodeRole(osProfile, vnetProfile, zookeeperNodeScriptActions, zookeeperNodeSize); + List zookeeperNodeScriptActions = GetScriptActionsForRoleType(clusterScriptActions, RuntimeScriptActionClusterNodeType.ZookeeperNode); + HDInsightClusterRole zookeeperNode = CreateZookeeperNodeRole(osProfile, vnetProfile, zookeeperNodeScriptActions, zookeeperNodeSize); roles.Add(zookeeperNode); // RServer & MLServices clusters contain an additional edge node. Return here for all other types. @@ -276,7 +275,7 @@ public static ComputeProfile CreateComputeProfile(OsProfile osProfile, VirtualNe // Set up edgenode and add to collection. const int edgeNodeCount = 1; edgeNodeSize = edgeNodeSize ?? GetNodeSize(clusterType, Constants.ClusterRoleType.EdgeNodeRole, defaultVmSizeConfigurations); ; - Role edgeNode = CreateEdgeNodeRole(osProfile, vnetProfile, null, edgeNodeCount, edgeNodeSize); + HDInsightClusterRole edgeNode = CreateEdgeNodeRole(osProfile, vnetProfile, null, edgeNodeCount, edgeNodeSize); roles.Add(edgeNode); } @@ -284,7 +283,7 @@ public static ComputeProfile CreateComputeProfile(OsProfile osProfile, VirtualNe if (isIDBrokerEnable) { string idBrokerNodeSize= GetNodeSize(clusterType, Constants.ClusterRoleType.HIBNodeRole, defaultVmSizeConfigurations); - Role idBrokerNode = CreateIdBrokerNodeRole(osProfile, vnetProfile, idBrokerNodeSize); + HDInsightClusterRole idBrokerNode = CreateIdBrokerNodeRole(osProfile, vnetProfile, idBrokerNodeSize); roles.Add(idBrokerNode); } @@ -292,61 +291,66 @@ public static ComputeProfile CreateComputeProfile(OsProfile osProfile, VirtualNe if (isKafakaRestProxyEnable) { kafkaManagementNodeSize = kafkaManagementNodeSize?? GetNodeSize(clusterType, Constants.ClusterRoleType.KafkaManagementNodeRole, defaultVmSizeConfigurations); - Role kafkaManagementNode = CreateKafkaManagementNode(osProfile, vnetProfile, kafkaManagementNodeSize); + HDInsightClusterRole kafkaManagementNode = CreateKafkaManagementNode(osProfile, vnetProfile, kafkaManagementNodeSize); roles.Add(kafkaManagementNode); } - return new ComputeProfile(roles); + return roles; } - public static Role CreateHeadNodeRole(OsProfile osProfile, VirtualNetworkProfile vnetProfile, List headNodeScriptActions, string headNodeSize) + public static HDInsightClusterRole CreateHeadNodeRole(HDInsightLinuxOSProfile osProfile, HDInsightVirtualNetworkProfile vnetProfile, List headNodeScriptActions, string headNodeSize) { const int headNodeCount = 2; return CreateCommonRole(osProfile, vnetProfile, AzureHDInsightClusterNodeType.HeadNode, headNodeScriptActions, headNodeCount, headNodeSize); } - public static Role CreateWorkerNodeRole(OsProfile osProfile, VirtualNetworkProfile vnetProfile, List workerNodeScriptActions, int workerNodeCount, string workerNodeSize) + public static HDInsightClusterRole CreateWorkerNodeRole(HDInsightLinuxOSProfile osProfile, HDInsightVirtualNetworkProfile vnetProfile, List workerNodeScriptActions, int workerNodeCount, string workerNodeSize) { return CreateCommonRole(osProfile, vnetProfile, AzureHDInsightClusterNodeType.WorkerNode, workerNodeScriptActions, workerNodeCount, workerNodeSize); } - public static Role CreateZookeeperNodeRole(OsProfile osProfile, VirtualNetworkProfile vnetProfile, List zookeeperNodeScriptActions, string zookeeperNodeSize) + public static HDInsightClusterRole CreateZookeeperNodeRole(HDInsightLinuxOSProfile osProfile, HDInsightVirtualNetworkProfile vnetProfile, List zookeeperNodeScriptActions, string zookeeperNodeSize) { const int zookeeperNodeCount = 3; return CreateCommonRole(osProfile, vnetProfile, AzureHDInsightClusterNodeType.ZookeeperNode, zookeeperNodeScriptActions, zookeeperNodeCount, zookeeperNodeSize); } - public static Role CreateEdgeNodeRole(OsProfile osProfile, VirtualNetworkProfile vnetProfile, List edgeNodeScriptActions, int edgeNodeCount, string edgeNodeSize) + public static HDInsightClusterRole CreateEdgeNodeRole(HDInsightLinuxOSProfile osProfile, HDInsightVirtualNetworkProfile vnetProfile, List edgeNodeScriptActions, int edgeNodeCount, string edgeNodeSize) { return CreateCommonRole(osProfile, vnetProfile, AzureHDInsightClusterNodeType.EdgeNode, edgeNodeScriptActions, edgeNodeCount, edgeNodeSize); } - public static Role CreateIdBrokerNodeRole(OsProfile osProfile, VirtualNetworkProfile vnetProfile,string idBrokerNodeSize) + public static HDInsightClusterRole CreateIdBrokerNodeRole(HDInsightLinuxOSProfile osProfile, HDInsightVirtualNetworkProfile vnetProfile,string idBrokerNodeSize) { const int idBrokerNodeCount = 2; return CreateCommonRole(null, vnetProfile, AzureHDInsightClusterNodeType.IdBrokerNode, null, idBrokerNodeCount, idBrokerNodeSize); } - public static Role CreateKafkaManagementNode(OsProfile osProfile, VirtualNetworkProfile vnetProfile, string kafkaManagementNodeSize) + public static HDInsightClusterRole CreateKafkaManagementNode(HDInsightLinuxOSProfile osProfile, HDInsightVirtualNetworkProfile vnetProfile, string kafkaManagementNodeSize) { const int kafkaManagementNodeCount = 2; return CreateCommonRole(osProfile, vnetProfile, AzureHDInsightClusterNodeType.KafkaManagementNode, null, kafkaManagementNodeCount, kafkaManagementNodeSize); } - private static Role CreateCommonRole(OsProfile osProfile, VirtualNetworkProfile vnetProfile, AzureHDInsightClusterNodeType nodeType, List scriptActions, int instanceCount, + private static HDInsightClusterRole CreateCommonRole(HDInsightLinuxOSProfile OSLinuxProfile, HDInsightVirtualNetworkProfile vnetProfile, AzureHDInsightClusterNodeType nodeType, List scriptActions, int instanceCount, string vmSize) { - return new Role + HDInsightClusterRole clusterRole = new HDInsightClusterRole { Name = nodeType.ToString().ToLower(), TargetInstanceCount = instanceCount, - HardwareProfile = vmSize != null ? new HardwareProfile - { - VmSize = vmSize - } : null, + HardwareVmSize = vmSize != null ? vmSize: null, VirtualNetworkProfile = vnetProfile, - OsProfile = osProfile, - ScriptActions = scriptActions + OSLinuxProfile = OSLinuxProfile, }; + if(scriptActions != null) + { + foreach(var scription in scriptActions) + { + clusterRole.ScriptActions.Add(scription); + } + } + + return clusterRole; } public static string GetNodeSize(string clusterType, string nodeRoleType) @@ -380,27 +384,44 @@ public static string GetNodeSize(string clusterType, string nodeRoleType, Dictio return vmSize; } - public static SecurityProfile ConvertAzureHDInsightSecurityProfileToSecurityProfile(AzureHDInsightSecurityProfile azureHDInsightSecurityProfile, string assignedIdentity) + public static HDInsightSecurityProfile ConvertAzureHDInsightSecurityProfileToSecurityProfile(AzureHDInsightSecurityProfile azureHDInsightSecurityProfile, string assignedIdentity) { if (azureHDInsightSecurityProfile == null) return null; - SecurityProfile securityProfile = new SecurityProfile(DirectoryType.ActiveDirectory); + HDInsightSecurityProfile securityProfile = new HDInsightSecurityProfile(); + securityProfile.DirectoryType = AuthenticationDirectoryType.ActiveDirectory; securityProfile.Domain = Utils.GetResourceNameFromResourceId(azureHDInsightSecurityProfile.DomainResourceId); securityProfile.OrganizationalUnitDN = azureHDInsightSecurityProfile.OrganizationalUnitDN; - securityProfile.LdapsUrls = azureHDInsightSecurityProfile.LdapsUrls; + foreach(var item in azureHDInsightSecurityProfile.LdapsUrls) + { + securityProfile.LdapUris.Add(new Uri(item)); + } + if (azureHDInsightSecurityProfile.DomainUserCredential != null) { securityProfile.DomainUsername = azureHDInsightSecurityProfile.DomainUserCredential.UserName; securityProfile.DomainUserPassword = azureHDInsightSecurityProfile.DomainUserCredential.Password?.ConvertToString(); } - securityProfile.ClusterUsersGroupDNs = azureHDInsightSecurityProfile.ClusterUsersGroupDNs; - securityProfile.AaddsResourceId = azureHDInsightSecurityProfile.DomainResourceId; - securityProfile.MsiResourceId = assignedIdentity; + + foreach(var item in azureHDInsightSecurityProfile.ClusterUsersGroupDNs) + { + securityProfile.ClusterUsersGroupDNs.Add(item); + } + + if(azureHDInsightSecurityProfile.DomainResourceId != null) + { + securityProfile.AaddsResourceId = new ResourceIdentifier(azureHDInsightSecurityProfile.DomainResourceId); + } + + if(assignedIdentity != null) + { + securityProfile.MsiResourceId = new ResourceIdentifier(assignedIdentity); + } return securityProfile; } - private static List GetScriptActionsForRoleType(Dictionary> clusterScriptActions, ClusterNodeType nodeType) + private static List GetScriptActionsForRoleType(Dictionary> clusterScriptActions, RuntimeScriptActionClusterNodeType nodeType) { if (clusterScriptActions == null) return null; List scriptActions; @@ -419,7 +440,7 @@ public static Dictionary GetExistingConfigurationsForType(IDicti return config; } - public static bool CheckEnableKafkaRestProxy(NetworkProperties networkProperties) + public static bool CheckEnableKafkaRestProxy(HDInsightClusterNetworkProperties networkProperties) { return networkProperties != null; } diff --git a/src/HDInsight/HDInsight/Constants.cs b/src/HDInsight/HDInsight/Constants.cs index b43b702e775d..2c62aefd0354 100644 --- a/src/HDInsight/HDInsight/Constants.cs +++ b/src/HDInsight/HDInsight/Constants.cs @@ -16,11 +16,7 @@ namespace Microsoft.Azure.Commands.HDInsight internal static class Constants { public const string Hadoop = "Hadoop"; - public const string deprecateByAzVersion = "11.0.0"; - public const string deprecateByVersion = "7.0.0"; - public const string diskEncryptionChangeInfo = "The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' will change from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'."; - public const string workerNodeDataDisksGroupsChangeInfo = "The type of property 'WorkerNodeDataDisksGroups' will change from 'List' to 'List'."; - + public static class CommandNames { public const string AzureHDInsightCluster = "AzureRmHDInsightCluster"; diff --git a/src/HDInsight/HDInsight/ErrorResponse.cs b/src/HDInsight/HDInsight/ErrorResponse.cs new file mode 100644 index 000000000000..952f0dfc86eb --- /dev/null +++ b/src/HDInsight/HDInsight/ErrorResponse.cs @@ -0,0 +1,63 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Rest; +using Newtonsoft.Json; + +namespace Microsoft.Azure.Commands.HDInsight.Models +{ + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// + public partial class ErrorResponse + { + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + /// Error code + /// Error message indicating why the operation + /// failed. + public ErrorResponse(string code = default(string), string message = default(string)) + { + Code = code; + Message = message; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets error code + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// Gets or sets error message indicating why the operation failed. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight/ErrorResponseException.cs b/src/HDInsight/HDInsight/ErrorResponseException.cs new file mode 100644 index 000000000000..7c814178db1a --- /dev/null +++ b/src/HDInsight/HDInsight/ErrorResponseException.cs @@ -0,0 +1,65 @@ +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Rest; + +namespace Microsoft.Azure.Commands.HDInsight.Models +{ + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// + public partial class ErrorResponseException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, System.Exception innerException) + : base(message, innerException) + { + } + } +} \ No newline at end of file diff --git a/src/HDInsight/HDInsight/HDInsight.csproj b/src/HDInsight/HDInsight/HDInsight.csproj index 95f4316462c8..c7b07fa63261 100644 --- a/src/HDInsight/HDInsight/HDInsight.csproj +++ b/src/HDInsight/HDInsight/HDInsight.csproj @@ -1,21 +1,18 @@  - HDInsight + net7.0 - - $(LegacyAssemblyPrefix)$(PsModuleName) - + + - - - + \ No newline at end of file diff --git a/src/HDInsight/HDInsight/HDInsightCmdletBase.cs b/src/HDInsight/HDInsight/HDInsightCmdletBase.cs index e90ec177202e..bcbac6fab301 100644 --- a/src/HDInsight/HDInsight/HDInsightCmdletBase.cs +++ b/src/HDInsight/HDInsight/HDInsightCmdletBase.cs @@ -15,10 +15,12 @@ using Hyak.Common; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; +using Azure.Core; +using Azure.ResourceManager.HDInsight; namespace Microsoft.Azure.Commands.HDInsight.Commands { @@ -90,10 +92,9 @@ protected string GetResourceGroupByAccountName(string clusterName) { try { - var clusterId = HDInsightManagementClient.ListClusters().First(x => x.Name.Equals(clusterName, StringComparison.InvariantCultureIgnoreCase)).Id; - var rgStart = clusterId.IndexOf("resourceGroups/", StringComparison.InvariantCultureIgnoreCase) + ("resourceGroups/".Length); - var rgLength = (clusterId.IndexOf("/providers/", StringComparison.InvariantCultureIgnoreCase)) - rgStart; - return clusterId.Substring(rgStart, rgLength); + IList clusters = HDInsightManagementClient.ListClusters(); + ResourceIdentifier clusterId = clusters.First(x => x.Name.Equals(clusterName, StringComparison.InvariantCultureIgnoreCase)).Id; + return clusterId.ResourceGroupName; } catch { @@ -111,8 +112,8 @@ protected AzureHDInsightDefaultStorageAccount GetDefaultStorageAccount(string re } var cluster = result.FirstOrDefault(); - var coreSiteConfiguration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, ConfigurationKey.CoreSite); - var clusterIdentityConfiguration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, ConfigurationKey.ClusterIdentity); + var coreSiteConfiguration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, Constants.ConfigurationKey.CoreSite); + var clusterIdentityConfiguration = HDInsightManagementClient.GetClusterConfigurations(resourceGroupName, cluster.Name, Constants.ConfigurationKey.ClusterIdentity); var DefaultStorageAccount = ClusterConfigurationUtils.GetDefaultStorageAccountDetails( cluster.Properties.ClusterVersion, @@ -133,10 +134,10 @@ protected Dictionary> GetDefaultVmsizesConfig Dictionary> nodeTypeAndClusterTypeAndVmSizeDict = null; try { - BillingResponseListResult billingResponseListResult = HDInsightManagementClient.ListBillingSpecs(location); + HDInsightBillingSpecsListResult billingResponseListResult = HDInsightManagementClient.ListBillingSpecs(location); /* The result is KeyValuePair> */ - var nodeTypeAndClusterTypeAndVmSizePairs = billingResponseListResult.VmSizeFilters.Where(filter => filter.FilterMode.Equals(FilterMode.Default)).SelectMany(x => + var nodeTypeAndClusterTypeAndVmSizePairs = billingResponseListResult.VmSizeFilters.Where(filter => filter.FilterMode.Equals(HDInsightFilterMode.Default)).SelectMany(x => { var clusterTypeAndVmSizePairs = x.ClusterFlavors.SelectMany(clusterType => x.VmSizes, (clusterType, vmSize) => { diff --git a/src/HDInsight/HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs b/src/HDInsight/HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs index 95fd1ec688dc..88db2ef7935e 100644 --- a/src/HDInsight/HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs +++ b/src/HDInsight/HDInsight/JobCommands/GetAzureHDInsightJobOutputCommand.cs @@ -18,7 +18,6 @@ using Microsoft.Azure.Commands.HDInsight.Models.Job; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.HDInsight.Job.Models; -using Microsoft.Azure.Management.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Common; using System; using System.Collections.Generic; @@ -143,7 +142,7 @@ private string GetStorageAccountKey(string resourceGroupName, string clusterName try { IDictionary coreSiteClusterConfiguration; - HDInsightManagementClient.ListConfigurations(resourceGroupName, clusterName).Configurations.TryGetValue(ConfigurationKey.CoreSite, out coreSiteClusterConfiguration); + HDInsightManagementClient.ListConfigurations(resourceGroupName, clusterName).Configurations.TryGetValue(Constants.ConfigurationKey.CoreSite, out coreSiteClusterConfiguration); coreSiteClusterConfiguration?.TryGetValue(Constants.ClusterConfiguration.StorageAccountKeyPrefix + DefaultStorageAccountName, out storageAccountKey); } catch (CloudException cloudEx) diff --git a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightClusterIdentity.cs b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightClusterIdentity.cs index f133cd3be1be..c653f77e25b1 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightClusterIdentity.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightClusterIdentity.cs @@ -14,15 +14,11 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight.ManagementCommands { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightConfig), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Dictionary> ScriptActions"}, - NewOutputProperties = new string[] {"Dictionary> ScriptActions"})] [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightClusterIdentity",DefaultParameterSetName = CertificateFilePathSet),OutputType(typeof(AzureHDInsightConfig))] public class AddAzureHDInsightClusterIdentity : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightComponentVersionCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightComponentVersionCommand.cs index 1d855f15322c..76cfc7ae955a 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightComponentVersionCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightComponentVersionCommand.cs @@ -14,14 +14,10 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightConfig), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Dictionary> ScriptActions"}, - NewOutputProperties = new string[] {"Dictionary> ScriptActions"})] [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightComponentVersion",SupportsShouldProcess = true),OutputType(typeof(AzureHDInsightConfig))] public class AddAzureHDInsightComponentVersionCommand : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs index d6304dff02a4..153d0f4d2c7b 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightConfigValuesCommand.cs @@ -14,17 +14,12 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.Azure.Management.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Collections; using System.Collections.Generic; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightConfig), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Dictionary> ScriptActions"}, - NewOutputProperties = new string[] {"Dictionary> ScriptActions"})] [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightConfigValue"),OutputType(typeof(AzureHDInsightConfig))] public class AddAzureHDInsightConfigValuesCommand : HDInsightCmdletBase { @@ -122,24 +117,24 @@ public override void ExecuteCmdlet() { _configurations = Config.Configurations ?? new Dictionary(); - AddConfigToConfigurations(Core, ConfigurationKey.CoreSite); - AddConfigToConfigurations(HiveSite, ConfigurationKey.HiveSite); - AddConfigToConfigurations(HiveEnv, ConfigurationKey.HiveEnv); - AddConfigToConfigurations(OozieSite, ConfigurationKey.OozieSite); - AddConfigToConfigurations(OozieEnv, ConfigurationKey.OozieEnv); - AddConfigToConfigurations(WebHCat, ConfigurationKey.WebHCatSite); - AddConfigToConfigurations(HBaseSite, ConfigurationKey.HBaseSite); - AddConfigToConfigurations(HBaseEnv, ConfigurationKey.HBaseEnv); - AddConfigToConfigurations(Storm, ConfigurationKey.StormSite); - AddConfigToConfigurations(Yarn, ConfigurationKey.YarnSite); - AddConfigToConfigurations(MapRed, ConfigurationKey.MapRedSite); - AddConfigToConfigurations(Tez, ConfigurationKey.TezSite); - AddConfigToConfigurations(Hdfs, ConfigurationKey.HdfsSite); + AddConfigToConfigurations(Core, Constants.ConfigurationKey.CoreSite); + AddConfigToConfigurations(HiveSite, Constants.ConfigurationKey.HiveSite); + AddConfigToConfigurations(HiveEnv, Constants.ConfigurationKey.HiveEnv); + AddConfigToConfigurations(OozieSite, Constants.ConfigurationKey.OozieSite); + AddConfigToConfigurations(OozieEnv, Constants.ConfigurationKey.OozieEnv); + AddConfigToConfigurations(WebHCat, Constants.ConfigurationKey.WebHCatSite); + AddConfigToConfigurations(HBaseSite, Constants.ConfigurationKey.HBaseSite); + AddConfigToConfigurations(HBaseEnv, Constants.ConfigurationKey.HBaseEnv); + AddConfigToConfigurations(Storm, Constants.ConfigurationKey.StormSite); + AddConfigToConfigurations(Yarn, Constants.ConfigurationKey.YarnSite); + AddConfigToConfigurations(MapRed, Constants.ConfigurationKey.MapRedSite); + AddConfigToConfigurations(Tez, Constants.ConfigurationKey.TezSite); + AddConfigToConfigurations(Hdfs, Constants.ConfigurationKey.HdfsSite); AddConfigToConfigurations(RServer, RServerConfigurationKey); - AddConfigToConfigurations(SparkDefaults, ConfigurationKey.SparkDefaults); - AddConfigToConfigurations(SparkThriftConf, ConfigurationKey.SparkThriftConf); - AddConfigToConfigurations(Spark2Defaults, ConfigurationKey.Spark2Defaults); - AddConfigToConfigurations(Spark2ThriftConf, ConfigurationKey.Spark2ThriftConf); + AddConfigToConfigurations(SparkDefaults, Constants.ConfigurationKey.SparkDefaults); + AddConfigToConfigurations(SparkThriftConf, Constants.ConfigurationKey.SparkThriftConf); + AddConfigToConfigurations(Spark2Defaults, Constants.ConfigurationKey.Spark2Defaults); + AddConfigToConfigurations(Spark2ThriftConf, Constants.ConfigurationKey.Spark2ThriftConf); WriteObject(Config); } diff --git a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightMetastoreCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightMetastoreCommand.cs index e61f1c811ce7..e6551efba06f 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightMetastoreCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightMetastoreCommand.cs @@ -14,14 +14,10 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightConfig), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Dictionary> ScriptActions"}, - NewOutputProperties = new string[] {"Dictionary> ScriptActions"})] [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightMetastore"),OutputType(typeof(AzureHDInsightConfig))] public class AddAzureHDInsightMetastoreCommand : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightScriptActionCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightScriptActionCommand.cs index c151bc5b93b3..c22aac305521 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightScriptActionCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightScriptActionCommand.cs @@ -15,8 +15,6 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models.Management; -using Microsoft.Azure.Management.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Collections.Generic; using System.Management.Automation; @@ -35,11 +33,10 @@ public class AddAzureHDInsightScriptActionCommand : HDInsightCmdletBase HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster.")] public AzureHDInsightConfig Config { get; set; } - [CmdletParameterBreakingChangeWithVersion("NodeType",Constants.deprecateByAzVersion, Constants.deprecateByVersion, OldParamaterType = typeof(ClusterNodeType), NewParameterTypeName = "RuntimeScriptActionClusterNodeType")] [Parameter(Position = 1, Mandatory = true, HelpMessage = "The node on which to apply the action.")] - public ClusterNodeType NodeType { get; set; } + public RuntimeScriptActionClusterNodeType NodeType { get; set; } [Parameter(Position = 2, Mandatory = true, diff --git a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightSecurityProfile.cs b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightSecurityProfile.cs index 9b10a28b9df6..b4c8d2a63317 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightSecurityProfile.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightSecurityProfile.cs @@ -17,13 +17,9 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using System.Management.Automation; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.HDInsight { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightConfig), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Dictionary> ScriptActions"}, - NewOutputProperties = new string[] {"Dictionary> ScriptActions"})] [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightSecurityProfile",SupportsShouldProcess = true),OutputType(typeof(AzureHDInsightSecurityProfile))] public class AddAzureHDInsightSecurityProfile : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightStorageCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightStorageCommand.cs index 2499bd2d24eb..b51773553ed9 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightStorageCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/AddAzureHDInsightStorageCommand.cs @@ -14,14 +14,10 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightConfig), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Dictionary> ScriptActions"}, - NewOutputProperties = new string[] {"Dictionary> ScriptActions"})] [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightStorage"),OutputType(typeof(AzureHDInsightConfig))] public class AddAzureHDInsightStorageCommand : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs index 6471fcc61140..579c1c464efd 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/DisableAzureHDInsightAzureMonitorCommand.cs @@ -16,13 +16,11 @@ using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Disable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = DisableByNameParameterSet, SupportsShouldProcess = true)] [OutputType(typeof(bool))] public class DisableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase diff --git a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs index 470cd7657164..48bf7f69db84 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightAzureMonitorCommand.cs @@ -14,17 +14,15 @@ using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Commands; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Enable", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = EnableByNameParameterSet, SupportsShouldProcess = true)] [OutputType(typeof(bool))] public class EnableAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase @@ -126,7 +124,7 @@ public override void ExecuteCmdlet() ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } - var azureMonitorParams = new AzureMonitorRequest + var azureMonitorParams = new HDInsightAzureMonitorExtensionEnableContent { WorkspaceId = WorkspaceId, PrimaryKey = PrimaryKey diff --git a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitoringCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitoringCommand.cs index aa6e01afdfd9..f3df37990eb8 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitoringCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/EnableAzureHDInsightMonitoringCommand.cs @@ -14,7 +14,7 @@ using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Commands; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System.Management.Automation; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; @@ -61,7 +61,7 @@ public override void ExecuteCmdlet() ResourceGroupName = GetResourceGroupByAccountName(Name); } - var monitoringParams = new ClusterMonitoringRequest + var monitoringParams = new HDInsightClusterEnableClusterMonitoringContent { WorkspaceId = WorkspaceId, PrimaryKey = PrimaryKey diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs index 3a6614a59b7c..2f33f4a891d2 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightAzureMonitorCommand.cs @@ -17,13 +17,11 @@ using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightAzureMonitor", DefaultParameterSetName = GetByNameParameterSet)] [OutputType(typeof(AzureHDInsightAzureMonitor))] public class GetAzureHDInsightAzureMonitorCommand : HDInsightCmdletBase diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightClusterAutoscaleConfigurationCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightClusterAutoscaleConfigurationCommand.cs index 664b9e65a632..2ba6f9f25060 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightClusterAutoscaleConfigurationCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightClusterAutoscaleConfigurationCommand.cs @@ -14,18 +14,14 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; -using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightClusterAutoscaleConfiguration", DefaultParameterSetName = GetByNameParameterSet), OutputType(typeof(AzureHDInsightAutoscale))] public class GetAzureHDInsightClusterAutoscaleConfigurationCommand : HDInsightCmdletBase { @@ -92,7 +88,7 @@ public override void ExecuteCmdlet() ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } var cluster = HDInsightManagementClient.Get(ResourceGroupName, ClusterName); - var autoscale = Utils.ExtractRole(AzureHDInsightClusterNodeType.WorkerNode.ToString(), cluster.Properties.ComputeProfile)?.AutoscaleConfiguration; + var autoscale = Utils.ExtractRole(AzureHDInsightClusterNodeType.WorkerNode.ToString(), cluster.Properties.ComputeRoles)?.AutoScaleConfiguration; autoscaleConfiguration = autoscale != null ? new AzureHDInsightAutoscale(autoscale) : null; } diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightClusterCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightClusterCommand.cs index 8c9ce91be976..479634d85ab8 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightClusterCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightClusterCommand.cs @@ -15,13 +15,11 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightCluster"),OutputType(typeof(AzureHDInsightCluster))] public class GetAzureHDInsightCommand : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightHostCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightHostCommand.cs index b83c7762e937..235eab3d4cd6 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightHostCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightHostCommand.cs @@ -17,14 +17,12 @@ using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightHost", DefaultParameterSetName = SetByNameParameterSet), OutputType(typeof(AzureHDInsightHostInfo))] public class GetAzureHDInsightHostCommand : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs index db58a78b7574..4d1326e41652 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/GetAzureHDInsightPropertiesCommand.cs @@ -15,12 +15,10 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute("The generic type for 'property ComponentVersions' will change from 'System.Collections.Generic.IDictionary`2[System.String,System.String]' to 'System.Collections.Generic.IReadOnlyDictionary`2[System.String,System.String]'. ",Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightProperty"),OutputType(typeof(AzureHDInsightCapabilities))] public class GetAzureHDInsightPropertiesCommand : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterAutoscaleConfigurationCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterAutoscaleConfigurationCommand.cs index 3f93c95a4ff5..88a1a48f6dc9 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterAutoscaleConfigurationCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterAutoscaleConfigurationCommand.cs @@ -15,12 +15,11 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System; using System.Collections.Generic; -using System.Linq; using System.Management.Automation; using System.Text; diff --git a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterAutoscaleScheduleConditionCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterAutoscaleScheduleConditionCommand.cs index 41713a95f494..b216aa0d4e5d 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterAutoscaleScheduleConditionCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterAutoscaleScheduleConditionCommand.cs @@ -14,7 +14,6 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; -using Week = Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightDaysOfWeek; using System; using System.Collections.Generic; using System.Management.Automation; diff --git a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs index d7284f2f5eef..80b91f33aafd 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterCommand.cs @@ -22,9 +22,8 @@ using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Common; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Collections; using System.Collections.Generic; @@ -32,17 +31,18 @@ using System.IO; using System.Linq; using System.Management.Automation; +using Azure.ResourceManager.Models; +using Azure.Core; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightCluster", DefaultParameterSetName = DefaultParameterSet), OutputType(typeof(AzureHDInsightCluster))] public class NewAzureHDInsightClusterCommand : HDInsightCmdletBase { private Dictionary> clusterConfigurations; private Dictionary clusterComponentVersion; private Dictionary clusterAdditionalStorageAccounts; - private Dictionary> clusterScriptActions; + private Dictionary> clusterScriptActions; private const string CertificateFilePathSet = "CertificateFilePath"; private const string CertificateFileContentsSet = "CertificateFileContents"; private const string DefaultParameterSet = "Default"; @@ -99,6 +99,10 @@ public class NewAzureHDInsightClusterCommand : HDInsightCmdletBase HelpMessage = "Gets or sets the type of the storage account.")] public StorageType? StorageAccountType { get; set; } + [Parameter( + HelpMessage = "Enable secure channel or not, it's an optional field.")] + public bool? EnableSecureChannel { get; set; } + [Parameter(ValueFromPipeline = true, HelpMessage = "The HDInsight cluster configuration to use when creating the new cluster.")] public AzureHDInsightConfig Config @@ -112,6 +116,7 @@ public AzureHDInsightConfig Config StorageAccountType = StorageAccountType ?? StorageType.AzureStorage, StorageAccountResourceId = StorageAccountResourceId, StorageAccountKey = StorageAccountKey, + EnableSecureChannel = EnableSecureChannel, WorkerNodeSize = WorkerNodeSize, HeadNodeSize = HeadNodeSize, EdgeNodeSize = EdgeNodeSize, @@ -174,6 +179,7 @@ var storageAccount in { StorageAccountKey = value.StorageAccountKey; } + EnableSecureChannel = value.EnableSecureChannel; WorkerNodeSize = value.WorkerNodeSize; HeadNodeSize = value.HeadNodeSize; EdgeNodeSize = value.EdgeNodeSize; @@ -235,9 +241,8 @@ var storageAccount in [Parameter(HelpMessage = "Gets the configurations of this HDInsight cluster.")] public Dictionary> Configurations { get; private set; } - [CmdletParameterBreakingChangeWithVersion("NodeType",Constants.deprecateByAzVersion, Constants.deprecateByVersion, OldParamaterType = typeof(ClusterNodeType), NewParameterTypeName = "RuntimeScriptActionClusterNodeType")] [Parameter(HelpMessage = "Gets config actions for the cluster.")] - public Dictionary> ScriptActions { get; private set; } + public Dictionary> ScriptActions { get; private set; } [Parameter(HelpMessage = "Gets or sets the StorageContainer name for the default Azure Storage Account")] public string StorageContainer { get; set; } @@ -279,16 +284,16 @@ var storageAccount in public string SubnetName { get; set; } [Parameter(HelpMessage = "Gets or sets the type of operating system installed on cluster nodes.")] - [PSArgumentCompleter(Management.HDInsight.Models.OSType.Linux)] + [PSArgumentCompleter("Linux")] public string OSType { - get { return string.IsNullOrEmpty(_osType)? Management.HDInsight.Models.OSType.Linux : _osType; } + get { return string.IsNullOrEmpty(_osType)? HDInsightOSType.Linux.ToString() : _osType; } set { _osType = value; } } [Parameter(HelpMessage = "Gets or sets the cluster tier for this HDInsight cluster.")] - [PSArgumentCompleter(Tier.Standard, Tier.Premium)] + //[PSArgumentCompleter(Tier.Standard, Tier.Premium)] public string ClusterTier { get; set; } [Parameter(HelpMessage = "Gets or sets SSH credential.")] @@ -333,7 +338,7 @@ public string OSType public string StorageAccountManagedIdentity { get; set; } [Parameter(HelpMessage = "Gets or sets the encryption algorithm.")] - [PSArgumentCompleter(JsonWebKeyEncryptionAlgorithm.RSAOAEP, JsonWebKeyEncryptionAlgorithm.RSAOAEP256, JsonWebKeyEncryptionAlgorithm.RSA15)] + //[PSArgumentCompleter(JsonWebKeyEncryptionAlgorithm.RsaOaep.ToString(), JsonWebKeyEncryptionAlgorithm.RsaOaep256.ToString(), JsonWebKeyEncryptionAlgorithm.Rsa15.ToString())] public string EncryptionAlgorithm { get; set; } [Parameter(HelpMessage = "Gets or sets the encryption key name.")] @@ -364,11 +369,11 @@ public string OSType public string KafkaClientGroupName { get; set; } [Parameter(HelpMessage = "Gets or sets the resource provider connection type.")] - [PSArgumentCompleter(Management.HDInsight.Models.ResourceProviderConnection.Inbound, Management.HDInsight.Models.ResourceProviderConnection.Outbound)] + //[PSArgumentCompleter(HDInsightResourceProviderConnection.Inbound as string, HDInsightResourceProviderConnection.Outbound.ToString())] public string ResourceProviderConnection { get; set; } [Parameter(HelpMessage = "Gets or sets the private link type.")] - [PSArgumentCompleter(Management.HDInsight.Models.PrivateLink.Enabled, Management.HDInsight.Models.PrivateLink.Disabled)] + //[PSArgumentCompleter(Management.HDInsight.Models.PrivateLink.Enabled, Management.HDInsight.Models.PrivateLink.Disabled)] public string PrivateLink { get; set; } [Parameter(HelpMessage = "Enables HDInsight compute isolation feature.")] @@ -392,8 +397,8 @@ public NewAzureHDInsightClusterCommand() clusterAdditionalStorageAccounts = new Dictionary(); Configurations = new Dictionary>(); clusterConfigurations = new Dictionary>(); - ScriptActions = new Dictionary>(); - clusterScriptActions = new Dictionary>(); + ScriptActions = new Dictionary>(); + clusterScriptActions = new Dictionary>(); ComponentVersion = new Dictionary(); clusterComponentVersion = new Dictionary(); } @@ -414,18 +419,19 @@ public override void ExecuteCmdlet() ClusterCreateHelper.AddClusterCredentialToGatewayConfig(HttpCredential, clusterConfigurations); // Construct OS Profile - OsProfile osProfile = ClusterCreateHelper.CreateOsProfile(SshCredential, SshPublicKey); + HDInsightLinuxOSProfile osProfile = ClusterCreateHelper.CreateOsProfile(SshCredential, SshPublicKey); // Construct Virtual Network Profile - VirtualNetworkProfile vnetProfile = ClusterCreateHelper.CreateVirtualNetworkProfile(VirtualNetworkId, SubnetName); + HDInsightVirtualNetworkProfile vnetProfile = ClusterCreateHelper.CreateVirtualNetworkProfile(VirtualNetworkId, SubnetName); // Handle storage account - StorageProfile storageProfile = new StorageProfile() { Storageaccounts = new List { } }; + //StorageProfile storageProfile = new StorageProfile() { Storageaccounts = new List { } }; + IList storageAccounts = new List(); if (StorageAccountType == null || StorageAccountType == StorageType.AzureStorage) { - var azureStorageAccount = ClusterCreateHelper.CreateAzureStorageAccount(ClusterName, StorageAccountResourceId, StorageAccountKey, StorageContainer, this.DefaultContext.Environment.StorageEndpointSuffix); - storageProfile.Storageaccounts.Add(azureStorageAccount); + var azureStorageAccount = ClusterCreateHelper.CreateAzureStorageAccount(ClusterName, StorageAccountResourceId, StorageAccountKey, StorageContainer, EnableSecureChannel, this.DefaultContext.Environment.StorageEndpointSuffix); + storageAccounts.Add(azureStorageAccount); } else if (StorageAccountType == StorageType.AzureDataLakeStore) { @@ -433,8 +439,8 @@ public override void ExecuteCmdlet() } else if (StorageAccountType == StorageType.AzureDataLakeStorageGen2) { - var adlsgen2Account = ClusterCreateHelper.CreateAdlsGen2StorageAccount(ClusterName, StorageAccountResourceId, StorageAccountKey, StorageFileSystem, StorageAccountManagedIdentity, this.DefaultContext.Environment.StorageEndpointSuffix); - storageProfile.Storageaccounts.Add(adlsgen2Account); + var adlsgen2Account = ClusterCreateHelper.CreateAdlsGen2StorageAccount(ClusterName, StorageAccountResourceId, StorageAccountKey, StorageFileSystem, EnableSecureChannel, StorageAccountManagedIdentity, this.DefaultContext.Environment.StorageEndpointSuffix); + storageAccounts.Add(adlsgen2Account); } // Handle additional storage accounts @@ -489,7 +495,11 @@ var storageAccount in { kafkaRestProperties = new KafkaRestProperties() { - ClientGroupInfo = new ClientGroupInfo(KafkaClientGroupName, KafkaClientGroupId) + ClientGroupInfo = new ClientGroupInfo() + { + GroupName = KafkaClientGroupName, + GroupId = KafkaClientGroupId + } }; } @@ -497,54 +507,49 @@ var storageAccount in var defaultVmSizeConfigurations = GetDefaultVmsizesConfigurations(Location); // Compute profile contains headnode, workernode, zookeepernode, edgenode, kafkamanagementnode, idbrokernode, etc. - ComputeProfile computeProfile = ClusterCreateHelper.CreateComputeProfile(osProfile, vnetProfile, clusterScriptActions, ClusterType, ClusterSizeInNodes, HeadNodeSize, WorkerNodeSize, ZookeeperNodeSize, EdgeNodeSize, isKafkaRestProxyEnable, KafkaManagementNodeSize, EnableIDBroker.IsPresent, defaultVmSizeConfigurations); + IList computeProfileRoles = ClusterCreateHelper.CreateComputeProfile(osProfile, vnetProfile, clusterScriptActions, ClusterType, ClusterSizeInNodes, HeadNodeSize, WorkerNodeSize, ZookeeperNodeSize, EdgeNodeSize, isKafkaRestProxyEnable, KafkaManagementNodeSize, EnableIDBroker.IsPresent, defaultVmSizeConfigurations); // Handle SecurityProfile - SecurityProfile securityProfile = ClusterCreateHelper.ConvertAzureHDInsightSecurityProfileToSecurityProfile(SecurityProfile, AssignedIdentity); + HDInsightSecurityProfile securityProfile = ClusterCreateHelper.ConvertAzureHDInsightSecurityProfileToSecurityProfile(SecurityProfile, AssignedIdentity); // Handle DisksPerWorkerNode feature - Role workerNode = Utils.ExtractRole(ClusterNodeType.WorkerNode.ToString(), computeProfile); + HDInsightClusterRole workerNode = Utils.ExtractRole(RuntimeScriptActionClusterNodeType.WorkerNode.ToString(), computeProfileRoles); if (DisksPerWorkerNode > 0) { - workerNode.DataDisksGroups = new List() - { - new DataDisksGroups() + workerNode.DataDisksGroups.Add( + new HDInsightClusterDataDiskGroup() { DisksPerNode = DisksPerWorkerNode } - }; + ); } // Handle ClusterIdentity - ClusterIdentity clusterIdentity = null; + ManagedServiceIdentity clusterIdentity = null; if (AssignedIdentity != null || StorageAccountManagedIdentity != null) { - clusterIdentity = new ClusterIdentity - { - Type = ResourceIdentityType.UserAssigned, - UserAssignedIdentities = new Dictionary() - }; + clusterIdentity = new ManagedServiceIdentity(ManagedServiceIdentityType.UserAssigned); if (AssignedIdentity != null) { - clusterIdentity.UserAssignedIdentities.Add(AssignedIdentity, new UserAssignedIdentity()); + clusterIdentity.UserAssignedIdentities.Add(new ResourceIdentifier(AssignedIdentity), new UserAssignedIdentity()); } if (StorageAccountManagedIdentity != null) { - clusterIdentity.UserAssignedIdentities.Add(StorageAccountManagedIdentity, new UserAssignedIdentity()); + clusterIdentity.UserAssignedIdentities.Add(new ResourceIdentifier(StorageAccountManagedIdentity), new UserAssignedIdentity()); } } // Handle CMK feature - DiskEncryptionProperties diskEncryptionProperties = null; + HDInsightDiskEncryptionProperties diskEncryptionProperties = null; if (EncryptionKeyName != null && EncryptionKeyVersion != null && EncryptionVaultUri != null) { - diskEncryptionProperties = new DiskEncryptionProperties() + diskEncryptionProperties = new HDInsightDiskEncryptionProperties() { KeyName = EncryptionKeyName, KeyVersion = EncryptionKeyVersion, - VaultUri = EncryptionVaultUri, - EncryptionAlgorithm = EncryptionAlgorithm != null ? EncryptionAlgorithm : JsonWebKeyEncryptionAlgorithm.RSAOAEP, - MsiResourceId = AssignedIdentity + VaultUri = new Uri(EncryptionVaultUri), + EncryptionAlgorithm = EncryptionAlgorithm != null ? EncryptionAlgorithm : JsonWebKeyEncryptionAlgorithm.RsaOaep, + MsiResourceId = new ResourceIdentifier(AssignedIdentity) }; } @@ -553,73 +558,108 @@ var storageAccount in { if (diskEncryptionProperties != null) { - diskEncryptionProperties.EncryptionAtHost = EncryptionAtHost; + diskEncryptionProperties.IsEncryptionAtHostEnabled = EncryptionAtHost; } else { - diskEncryptionProperties = new DiskEncryptionProperties() + diskEncryptionProperties = new HDInsightDiskEncryptionProperties() { - EncryptionAtHost = EncryptionAtHost + IsEncryptionAtHostEnabled = EncryptionAtHost }; } } // Handle autoscale featurer - Autoscale autoscaleParameter = null; + HDInsightAutoScaleConfiguration autoscaleParameter = null; if (AutoscaleConfiguration != null) { autoscaleParameter = AutoscaleConfiguration.ToAutoscale(); - workerNode.AutoscaleConfiguration = autoscaleParameter; + workerNode.AutoScaleConfiguration = autoscaleParameter; } // Handle relay outound and private link feature - NetworkProperties networkProperties = null; + HDInsightClusterNetworkProperties networkProperties = null; if (ResourceProviderConnection != null || PrivateLink != null) { - networkProperties = new NetworkProperties(ResourceProviderConnection, PrivateLink); + networkProperties = new HDInsightClusterNetworkProperties(); + networkProperties.ResourceProviderConnection = ResourceProviderConnection; + networkProperties.PrivateLink = PrivateLink; } // Handle compute isolation properties - ComputeIsolationProperties computeIsolationProperties = null; + HDInsightComputeIsolationProperties computeIsolationProperties = null; if (EnableComputeIsolation.IsPresent) { - computeIsolationProperties = new ComputeIsolationProperties(EnableComputeIsolation.IsPresent, ComputeIsolationHostSku); + computeIsolationProperties = new HDInsightComputeIsolationProperties() + { + EnableComputeIsolation = EnableComputeIsolation.IsPresent, + HostSku = ComputeIsolationHostSku + }; } // Construct cluster create parameter - ClusterCreateParametersExtended createParams = new ClusterCreateParametersExtended + HDInsightClusterCreateOrUpdateContent createParams = new HDInsightClusterCreateOrUpdateContent { Location = Location, //Tags = Tags, //To Do add this Tags parameter - Zones = Zone, - Properties = new ClusterCreateProperties + Properties = new HDInsightClusterCreateOrUpdateProperties { - Tier = ClusterTier, - ClusterDefinition = new ClusterDefinition + ClusterDefinition = new HDInsightClusterDefinition() { - Kind = ClusterType ?? "Hadoop", - ComponentVersion = clusterComponentVersion, - Configurations = clusterConfigurations + Kind = ClusterType ?? "Hadoop" }, - ClusterVersion = Version ?? "default", + ClusterVersion = Version ?? "4.0", KafkaRestProperties = kafkaRestProperties, - ComputeProfile = computeProfile, - OsType = OSType, + OSType = new HDInsightOSType(OSType), SecurityProfile = securityProfile, - StorageProfile = storageProfile, DiskEncryptionProperties = diskEncryptionProperties, - //handle Encryption In Transit feature - EncryptionInTransitProperties = EncryptionInTransit != null ? new EncryptionInTransitProperties() - { - IsEncryptionInTransitEnabled = EncryptionInTransit - } : null, + MinSupportedTlsVersion = MinSupportedTlsVersion, NetworkProperties = networkProperties, ComputeIsolationProperties= computeIsolationProperties, - PrivateLinkConfigurations = PrivateLinkConfiguration !=null ? PrivateLinkConfiguration.Select(item=> item.ToPrivateLinkConfiguration()).ToList(): null }, Identity = clusterIdentity }; + createParams.Properties.ClusterDefinition.Configurations = BinaryData.FromObjectAsJson(clusterConfigurations); + + createParams.Properties.Tier = new HDInsightTier(); + if (ClusterTier != null) + { + createParams.Properties.Tier = ClusterTier; + } + + if(Zone != null) + { + foreach(var item in Zone) + { + createParams.Zones.Add(item); + } + } + + foreach(var item in clusterComponentVersion) + { + createParams.Properties.ClusterDefinition.ComponentVersion.Add(item); + } + + foreach(var item in computeProfileRoles) + { + createParams.Properties.ComputeRoles.Add(item); + } + + foreach(var item in storageAccounts) + { + createParams.Properties.StorageAccounts.Add(item); + } + + createParams.Properties.IsEncryptionInTransitEnabled = EncryptionInTransit != null ? EncryptionInTransit : null; + + if(PrivateLinkConfiguration != null) + { + foreach (var item in PrivateLinkConfiguration) + { + createParams.Properties.PrivateLinkConfigurations.Add(item.ToPrivateLinkConfiguration()); + } + } var cluster = HDInsightManagementClient.CreateCluster(ResourceGroupName, ClusterName, createParams); diff --git a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs index 6e4971f5cd9d..cab4ff0dbbdf 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightClusterConfigCommand.cs @@ -16,16 +16,11 @@ using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightConfig), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Dictionary> ScriptActions"}, - NewOutputProperties = new string[] {"Dictionary> ScriptActions"})] [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightClusterConfig"),OutputType(typeof(AzureHDInsightConfig))] public class NewAzureHDInsightClusterConfigCommand : HDInsightCmdletBase { @@ -47,6 +42,13 @@ public string StorageAccountKey set { _config.StorageAccountKey = value; } } + [Parameter(HelpMessage = "Enable secure channel or not, it's an optional field.")] + public bool? EnableSecureChannel + { + get { return _config.EnableSecureChannel; } + set { _config.EnableSecureChannel = value; } + } + [Parameter(HelpMessage = "Gets or sets the type of the default storage account.")] public StorageType StorageAccountType { @@ -104,7 +106,7 @@ public string ClusterType } [Parameter(HelpMessage = "Gets or sets the cluster tier for this HDInsight cluster.")] - [PSArgumentCompleter(Tier.Standard, Tier.Premium)] + [PSArgumentCompleter("Standard", "Premium")] public string ClusterTier { get { return _config.ClusterTier; } @@ -169,7 +171,7 @@ public string AssignedIdentity } [Parameter(HelpMessage = "Gets or sets the encryption algorithm.")] - [PSArgumentCompleter(JsonWebKeyEncryptionAlgorithm.RSAOAEP, JsonWebKeyEncryptionAlgorithm.RSAOAEP256, JsonWebKeyEncryptionAlgorithm.RSA15)] + [PSArgumentCompleter("RSA-OAEP", "RSA-OAEP-256", "RSA1_5")] public string EncryptionAlgorithm { get { return _config.EncryptionAlgorithm; } diff --git a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightIPConfigurationCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightIPConfigurationCommand.cs index 0f961eabf78a..95788e274754 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightIPConfigurationCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/NewAzureHDInsightIPConfigurationCommand.cs @@ -38,7 +38,7 @@ public string PrivateIPAddress [PSArgumentCompleter("dynamic", "static")] public string PrivateIPAllocationMethod { - get { return _ipConfiguration.PrivateIPAllocationMethod; } + get { return _ipConfiguration.PrivateIPAllocationMethod.ToString(); } set { _ipConfiguration.PrivateIPAllocationMethod = value; } } diff --git a/src/HDInsight/HDInsight/ManagementCommands/RemoveAzureHDInsightClusterAutoscaleConfigurationCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/RemoveAzureHDInsightClusterAutoscaleConfigurationCommand.cs index 82800b52cc8e..d3685e009ea4 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/RemoveAzureHDInsightClusterAutoscaleConfigurationCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/RemoveAzureHDInsightClusterAutoscaleConfigurationCommand.cs @@ -16,16 +16,15 @@ using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Linq; using System.Management.Automation; +using Azure.ResourceManager.HDInsight; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightClusterAutoscaleConfiguration", DefaultParameterSetName = RemoveByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(AzureHDInsightCluster))] public class RemoveAzureHDInsightClusterAutoscaleConfigurationCommand : HDInsightCmdletBase { @@ -96,10 +95,10 @@ public override void ExecuteCmdlet() if (ShouldProcess(ClusterName)) { - AutoscaleConfigurationUpdateParameter parameter = new AutoscaleConfigurationUpdateParameter(); + HDInsightAutoScaleConfigurationUpdateContent parameter = new HDInsightAutoScaleConfigurationUpdateContent(); HDInsightManagementClient.UpdateAutoScaleConfiguration(ResourceGroupName, ClusterName, parameter); - Cluster cluster = HDInsightManagementClient.Get(ResourceGroupName, ClusterName); + HDInsightClusterData cluster = HDInsightManagementClient.Get(ResourceGroupName, ClusterName); WriteObject(new AzureHDInsightCluster(cluster)); } } diff --git a/src/HDInsight/HDInsight/ManagementCommands/RestartAzureHDInsightHost.cs b/src/HDInsight/HDInsight/ManagementCommands/RestartAzureHDInsightHost.cs index 6d59abe927a0..a6739d8d575c 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/RestartAzureHDInsightHost.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/RestartAzureHDInsightHost.cs @@ -13,14 +13,11 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.HDInsight.Commands; -using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; using System.Linq; using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using System.Collections.Generic; using Microsoft.Azure.Commands.HDInsight.Models.Management; namespace Microsoft.Azure.Commands.HDInsight diff --git a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterAutoscaleConfigurationCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterAutoscaleConfigurationCommand.cs index 40b7d14d4f30..0008122e621c 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterAutoscaleConfigurationCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterAutoscaleConfigurationCommand.cs @@ -15,19 +15,18 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using System.Text; +using Azure.ResourceManager.HDInsight; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightClusterAutoscaleConfiguration", DefaultParameterSetName = LoadAutoscaleByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(AzureHDInsightCluster))] @@ -231,10 +230,10 @@ public override void ExecuteCmdlet() } var clusterBeforeUpdate = HDInsightManagementClient.Get(ResourceGroupName, ClusterName); - Autoscale autoscaleConfig = Utils.ExtractRole(AzureHDInsightClusterNodeType.WorkerNode.ToString(), clusterBeforeUpdate.Properties.ComputeProfile)?.AutoscaleConfiguration; + HDInsightAutoScaleConfiguration autoscaleConfig = Utils.ExtractRole(AzureHDInsightClusterNodeType.WorkerNode.ToString(), clusterBeforeUpdate.Properties.ComputeRoles)?.AutoScaleConfiguration; if (autoscaleConfig == null) { - autoscaleConfig = new Autoscale(); + autoscaleConfig = new HDInsightAutoScaleConfiguration(); } switch (ParameterSetName) @@ -247,7 +246,12 @@ public override void ExecuteCmdlet() if (autoscaleConfig.Capacity == null) { - autoscaleConfig.Capacity = new AutoscaleCapacity(MinWorkerNodeCount, MaxWorkerNodeCount); + autoscaleConfig.Capacity = new HDInsightAutoScaleCapacity() + { + MaxInstanceCount = MaxWorkerNodeCount, + MinInstanceCount = MinWorkerNodeCount + }; + } else { @@ -272,7 +276,12 @@ public override void ExecuteCmdlet() if (autoscaleConfig.Recurrence == null) { var schedules = Condition?.Select(conditon => conditon.ToAutoscaleSchedule()).ToList(); - autoscaleConfig.Recurrence = new AutoscaleRecurrence(TimeZone, schedules); + autoscaleConfig.Recurrence = new HDInsightAutoScaleRecurrence(); + autoscaleConfig.Recurrence.TimeZone = TimeZone; + foreach (var schedule in schedules) + { + autoscaleConfig.Recurrence.Schedule.Add(schedule); + } } else { @@ -283,7 +292,11 @@ public override void ExecuteCmdlet() if (this.IsParameterBound(c => c.Condition)) { - autoscaleConfig.Recurrence.Schedule = Condition?.Select(conditon => conditon.ToAutoscaleSchedule()).ToList(); + List hdInsightAutoScaleSchedules = Condition?.Select(conditon => conditon.ToAutoscaleSchedule()).ToList(); + foreach (var item in hdInsightAutoScaleSchedules) + { + autoscaleConfig.Recurrence.Schedule.Add(item); + } } } break; @@ -299,9 +312,9 @@ public override void ExecuteCmdlet() if (ShouldProcess(ClusterName)) { - HDInsightManagementClient.UpdateAutoScaleConfiguration(ResourceGroupName, ClusterName, new AutoscaleConfigurationUpdateParameter(autoscaleConfig)); + HDInsightManagementClient.UpdateAutoScaleConfiguration(ResourceGroupName, ClusterName, new HDInsightAutoScaleConfigurationUpdateContent() { AutoScale = autoscaleConfig}); - Cluster cluster = HDInsightManagementClient.Get(ResourceGroupName, ClusterName); + HDInsightClusterData cluster = HDInsightManagementClient.Get(ResourceGroupName, ClusterName); WriteObject(new AzureHDInsightCluster(cluster)); } } diff --git a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterDiskEncryptionKeyCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterDiskEncryptionKeyCommand.cs index 64ee29d1d101..ab39cea0e892 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterDiskEncryptionKeyCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterDiskEncryptionKeyCommand.cs @@ -15,16 +15,14 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System.Linq; using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightClusterDiskEncryptionKey", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true),OutputType(typeof(AzureHDInsightCluster))] public class SetAzureHDInsightClusterDiskEncryptionKeyCommand : HDInsightCmdletBase { @@ -106,11 +104,11 @@ public override void ExecuteCmdlet() ResourceGroupName = GetResourceGroupByAccountName(Name); } - var rotateParams = new ClusterDiskEncryptionParameters + var rotateParams = new HDInsightClusterDiskEncryptionContent { KeyName = EncryptionKeyName, KeyVersion = EncryptionKeyVersion, - VaultUri = EncryptionVaultUri + VaultUri = new System.Uri(EncryptionVaultUri) }; HDInsightManagementClient.RotateDiskEncryptionKey(ResourceGroupName, Name, rotateParams); diff --git a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterSizeCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterSizeCommand.cs index 79dfaee98b8a..bf52064033ac 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterSizeCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightClusterSizeCommand.cs @@ -15,20 +15,16 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; +using Azure.ResourceManager.HDInsight.Models; using System.Linq; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightCluster), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties DiskEncryption", "List WorkerNodeDataDisksGroups"}, - NewOutputProperties = new string[] {"Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties DiskEncryption", "List WorkerNodeDataDisksGroups"})] [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightClusterSize"),OutputType(typeof(AzureHDInsightCluster))] public class SetAzureHDInsightClusterSizeCommand : HDInsightCmdletBase { - private ClusterResizeParameters resizeParams; + private HDInsightClusterResizeContent resizeParams; #region Input Parameter Definitions [Parameter( @@ -55,7 +51,7 @@ public int TargetInstanceCount public SetAzureHDInsightClusterSizeCommand() { - resizeParams = new ClusterResizeParameters(); + resizeParams = new HDInsightClusterResizeContent(); } public override void ExecuteCmdlet() diff --git a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightDefaultStorageCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightDefaultStorageCommand.cs index 37ec174b2b14..1c0ce657f85e 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightDefaultStorageCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightDefaultStorageCommand.cs @@ -15,14 +15,10 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models.Management; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [CmdletOutputBreakingChangeWithVersion(typeof(AzureHDInsightConfig), Constants.deprecateByAzVersion, Constants.deprecateByVersion, - DeprecatedOutputProperties = new string[] {"Dictionary> ScriptActions"}, - NewOutputProperties = new string[] {"Dictionary> ScriptActions"})] [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightDefaultStorage"), OutputType(typeof(AzureHDInsightConfig))] public class SetAzureHDInsightDefaultStorageCommand : HDInsightCmdletBase { diff --git a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightGatewayCredentialCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightGatewayCredentialCommand.cs index 3ce0c64bc21d..11e1055df4e3 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightGatewayCredentialCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/SetAzureHDInsightGatewayCredentialCommand.cs @@ -17,16 +17,14 @@ using Microsoft.Azure.Commands.HDInsight.Models; using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; using Microsoft.WindowsAzure.Commands.Common; -using Microsoft.WindowsAzure.Commands.Common.CustomAttributes; using Microsoft.WindowsAzure.Commands.Utilities.Common; using System.Management.Automation; namespace Microsoft.Azure.Commands.HDInsight { - [GenericBreakingChangeWithVersionAttribute(Constants.diskEncryptionChangeInfo + Constants.workerNodeDataDisksGroupsChangeInfo,Constants.deprecateByAzVersion,Constants.deprecateByVersion)] [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "HDInsightGatewayCredential", DefaultParameterSetName = SetByNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(AzureHDInsightGatewaySettings))] public class SetAzureHDInsightGatewayCredentialCommand : HDInsightCmdletBase { @@ -101,7 +99,7 @@ public PSCredential HttpCredential public override void ExecuteCmdlet() { - var updateGatewaySettingsParameters = new UpdateGatewaySettingsParameters + var updateGatewaySettingsParameters = new HDInsightClusterUpdateGatewaySettingsContent { IsCredentialEnabled = true, UserName = HttpCredential.UserName, diff --git a/src/HDInsight/HDInsight/ManagementCommands/SubmitAzureHDInsightScriptActionCommand.cs b/src/HDInsight/HDInsight/ManagementCommands/SubmitAzureHDInsightScriptActionCommand.cs index 598d968d800e..18a69125d040 100644 --- a/src/HDInsight/HDInsight/ManagementCommands/SubmitAzureHDInsightScriptActionCommand.cs +++ b/src/HDInsight/HDInsight/ManagementCommands/SubmitAzureHDInsightScriptActionCommand.cs @@ -15,11 +15,12 @@ using Microsoft.Azure.Commands.HDInsight.Commands; using Microsoft.Azure.Commands.HDInsight.Models.Management; using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; +using Microsoft.Azure.Commands.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight { @@ -85,21 +86,10 @@ public override void ExecuteCmdlet() ResourceGroupName = GetResourceGroupByAccountName(ClusterName); } - var scriptAction = new RuntimeScriptAction - { - Name = Name, - Parameters = Parameters, - Roles = NodeTypes.Select(n => n.ToString()).ToList(), - Uri = Uri.IsAbsoluteUri ? Uri.AbsoluteUri : Uri.ToString() - }; - - var scriptActions = new List { scriptAction }; + RuntimeScriptAction scriptAction = ArmHDInsightModelFactory.RuntimeScriptAction(Name, Uri.IsAbsoluteUri ? new Uri(Uri.AbsoluteUri) : Uri, Parameters, NodeTypes.Select(n => n.ToString()).ToList()); - var executeScriptActionParameters = new ExecuteScriptActionParameters - { - ScriptActions = scriptActions, - PersistOnSuccess = PersistOnSuccess.IsPresent - }; + var executeScriptActionParameters = new ExecuteScriptActionContent(PersistOnSuccess.IsPresent); + executeScriptActionParameters.ScriptActions.Add(scriptAction); ErrorResponseException errorResponse = null; try diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscale.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscale.cs index 8caf590b9173..bf1af678b348 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscale.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscale.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.HDInsight.Models { public class AzureHDInsightAutoscale { - public AzureHDInsightAutoscale(Autoscale autoscale) + public AzureHDInsightAutoscale(HDInsightAutoScaleConfiguration autoscale) { Capacity = autoscale?.Capacity != null ? new AzureHDInsightAutoscaleCapacity(autoscale.Capacity) : null; Recurrence = autoscale?.Recurrence != null ? new AzureHDInsightAutoscaleRecurrence(autoscale.Recurrence) : null; @@ -37,17 +37,29 @@ public AzureHDInsightAutoscale(AzureHDInsightAutoscaleCapacity capacity = null, /// Convert AzureHDInsightAutoscaleConfiguration to Autoscale /// /// - public Autoscale ToAutoscale() + public HDInsightAutoScaleConfiguration ToAutoscale() { - Autoscale autoscale = new Autoscale(); + HDInsightAutoScaleConfiguration autoscale = new HDInsightAutoScaleConfiguration(); if (Capacity != null) { - autoscale.Capacity = new AutoscaleCapacity(Capacity.MinInstanceCount, Capacity.MaxInstanceCount); + autoscale.Capacity = new HDInsightAutoScaleCapacity() + { + MaxInstanceCount = Capacity.MaxInstanceCount, + MinInstanceCount = Capacity.MinInstanceCount, + }; } if (Recurrence != null) { - autoscale.Recurrence = new AutoscaleRecurrence(Recurrence.TimeZone, Recurrence.Condition?.Select(condition => condition.ToAutoscaleSchedule()).ToList()); + //Recurrence.TimeZone, Recurrence.Condition?.Select(condition => condition.ToAutoscaleSchedule()).ToList() + autoscale.Recurrence = new HDInsightAutoScaleRecurrence(); + autoscale.Recurrence.TimeZone = Recurrence.TimeZone; + + foreach (var item in Recurrence.Condition) + { + autoscale.Recurrence.Schedule.Add(item.ToAutoscaleSchedule()); + } + } return autoscale; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleCapacity.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleCapacity.cs index 0b7cbc07c953..d1cc6d1e47d5 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleCapacity.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleCapacity.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.HDInsight.Models { public class AzureHDInsightAutoscaleCapacity { - public AzureHDInsightAutoscaleCapacity(AutoscaleCapacity capacity) + public AzureHDInsightAutoscaleCapacity(HDInsightAutoScaleCapacity capacity) { MinInstanceCount = capacity?.MinInstanceCount; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleCondition.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleCondition.cs index b61f1e2469d9..451219a4208b 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleCondition.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleCondition.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.HDInsight.Models { public class AzureHDInsightAutoscaleCondition { - public AzureHDInsightAutoscaleCondition(AutoscaleSchedule autoscaleSchedule) + public AzureHDInsightAutoscaleCondition(HDInsightAutoScaleSchedule autoscaleSchedule) { Time = autoscaleSchedule?.TimeAndCapacity?.Time; WorkerNodeCount = autoscaleSchedule?.TimeAndCapacity?.MinInstanceCount; @@ -33,18 +33,22 @@ public AzureHDInsightAutoscaleCondition() Days = new List(); } - public AutoscaleSchedule ToAutoscaleSchedule() + public HDInsightAutoScaleSchedule ToAutoscaleSchedule() { - return new AutoscaleSchedule() + HDInsightAutoScaleSchedule autoScaleSchedule = new HDInsightAutoScaleSchedule() { - TimeAndCapacity = new AutoscaleTimeAndCapacity() + TimeAndCapacity = new HDInsightAutoScaleTimeAndCapacity() { Time = Time, MinInstanceCount = WorkerNodeCount, MaxInstanceCount = WorkerNodeCount - }, - Days = Days.Select(day => day.ToString()).ToList() + } }; + foreach (var day in Days) + { + autoScaleSchedule.Days.Add(new HDInsightDayOfWeek(day.ToString())); + } + return autoScaleSchedule; } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleRecurrence.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleRecurrence.cs index a8bff55bad61..b13bdc44fb45 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleRecurrence.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAutoscaleRecurrence.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.HDInsight.Models { public class AzureHDInsightAutoscaleRecurrence { - public AzureHDInsightAutoscaleRecurrence(AutoscaleRecurrence autoscaleRecurrence) + public AzureHDInsightAutoscaleRecurrence(HDInsightAutoScaleRecurrence autoscaleRecurrence) { TimeZone = autoscaleRecurrence?.TimeZone; Condition = autoscaleRecurrence?.Schedule?.Select(item => new AzureHDInsightAutoscaleCondition(item)).ToList(); diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs index 9d4559cc0f91..c74676fc486e 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightAzureMonitor.cs @@ -12,15 +12,15 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models.Management { public class AzureHDInsightAzureMonitor { - public AzureHDInsightAzureMonitor(AzureMonitorResponse azureMonitorResponse) + public AzureHDInsightAzureMonitor(HDInsightAzureMonitorExtensionStatus azureMonitorResponse) { - ClusterMonitoringEnabled = azureMonitorResponse.ClusterMonitoringEnabled ?? false; + ClusterMonitoringEnabled = azureMonitorResponse.IsClusterMonitoringEnabled ?? false; WorkspaceId = azureMonitorResponse.WorkspaceId; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCapabilities.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCapabilities.cs index db782502dd9c..6e25d8133f14 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCapabilities.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCapabilities.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System.Collections.Generic; using System.Linq; @@ -20,17 +20,17 @@ namespace Microsoft.Azure.Commands.HDInsight.Models.Management { public class AzureHDInsightCapabilities { - public AzureHDInsightCapabilities(CapabilitiesResult capabilitiesResult, BillingResponseListResult billingResponseListResult) + public AzureHDInsightCapabilities(HDInsightCapabilitiesResult capabilitiesResult, HDInsightBillingSpecsListResult billingResponseListResult) { this.Versions = capabilitiesResult?.Versions?.ToDictionary(item => item.Key, item => new AzureHDInsightVersionsCapability(item.Value)); this.Regions = capabilitiesResult?.Regions?.ToDictionary(item => item.Key, item => new AzureHDInsightRegionsCapability(item.Value)); - this.VmSizes = billingResponseListResult?.VmSizes; + this.VmSizes = billingResponseListResult?.VmSizes.ToList(); this.VmSizeFilters = billingResponseListResult?.VmSizeFilters?.Select(val => new AzureHDInsightVmSizeCompatibilityFilter(val)).ToList(); - this.Features = capabilitiesResult?.Features; + this.Features = capabilitiesResult?.Features.ToList(); this.Quota = new AzureHDInsightQuotaCapability(capabilitiesResult?.Quota); } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightClientGroupInfo.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightClientGroupInfo.cs index e36aa4d687e3..4b474610cd64 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightClientGroupInfo.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightClientGroupInfo.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Text; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCluster.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCluster.cs index 0c3ed85933de..8b1f00158d5f 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCluster.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightCluster.cs @@ -12,32 +12,33 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Common; +using Azure.ResourceManager.HDInsight; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models { public class AzureHDInsightCluster { - public AzureHDInsightCluster(Cluster cluster) + public AzureHDInsightCluster(HDInsightClusterData cluster) { Id = cluster.Id; Name = cluster.Name; Location = cluster.Location; ClusterId = cluster.Properties.ClusterId; ClusterVersion = cluster.Properties.ClusterVersion; - OperatingSystemType = cluster.Properties.OsType; - ClusterTier = cluster.Properties.Tier; + OperatingSystemType = cluster.Properties.OSType.ToString(); + ClusterTier = cluster.Properties.Tier.ToString(); ClusterState = cluster.Properties.ClusterState; ClusterType = cluster.Properties.ClusterDefinition.Kind; - CoresUsed = cluster.Properties.QuotaInfo.CoresUsed ?? 0; + CoresUsed = cluster.Properties.QuotaInfoCoresUsed ?? 0; var httpEndpoint = cluster.Properties.ConnectivityEndpoints?.FirstOrDefault(c => c.Name.Equals("HTTPS", StringComparison.OrdinalIgnoreCase)); - HttpEndpoint = httpEndpoint != null ? httpEndpoint.Location : null; + HttpEndpoint = httpEndpoint != null ? httpEndpoint.EndpointLocation : null; ConnectivityEndpoints = cluster?.Properties?.ConnectivityEndpoints?.Select(endpoint => new AzureHDInsightConnectivityEndpoint(endpoint)).ToList(); Error = cluster.Properties.Errors?.Select(s => s.Message).FirstOrDefault(); ResourceGroup = ClusterConfigurationUtils.GetResourceGroupFromClusterId(cluster.Id); @@ -49,10 +50,10 @@ public AzureHDInsightCluster(Cluster cluster) ComponentVersion.Add(componentVersion.ToString()); } } - WorkerNodeDataDisksGroups = new List(); - if (cluster.Properties.ComputeProfile != null && cluster.Properties.ComputeProfile.Roles.Any()) + WorkerNodeDataDisksGroups = new List(); + if (cluster.Properties.ComputeRoles != null && cluster.Properties.ComputeRoles.Any()) { - var rolesWithDataDisksGroups = cluster.Properties.ComputeProfile.Roles.Where(x => x.DataDisksGroups != null); + var rolesWithDataDisksGroups = cluster.Properties.ComputeRoles.Where(x => x.DataDisksGroups != null); foreach (var role in rolesWithDataDisksGroups) { WorkerNodeDataDisksGroups.AddRange(role.DataDisksGroups); @@ -61,23 +62,27 @@ public AzureHDInsightCluster(Cluster cluster) var clusterSecurityProfile = cluster.Properties.SecurityProfile; SecurityProfile = clusterSecurityProfile != null ? new AzureHDInsightSecurityProfile() { - DomainResourceId = clusterSecurityProfile.AaddsResourceId, + DomainResourceId = clusterSecurityProfile.AaddsResourceId.ToString(), //We should not be returning the actual password to the user DomainUserCredential = new PSCredential(clusterSecurityProfile.DomainUsername, "***".ConvertToSecureString()), OrganizationalUnitDN = clusterSecurityProfile.OrganizationalUnitDN, - LdapsUrls = clusterSecurityProfile.LdapsUrls != null ? clusterSecurityProfile.LdapsUrls.ToArray() : null, + LdapsUrls = clusterSecurityProfile.LdapUris != null ? clusterSecurityProfile.LdapUris.Select(uri => uri.OriginalString).ToArray() : null, ClusterUsersGroupDNs = clusterSecurityProfile.ClusterUsersGroupDNs != null ? clusterSecurityProfile.ClusterUsersGroupDNs.ToArray() : null, } : null; MinSupportedTlsVersion = cluster.Properties.MinSupportedTlsVersion; DiskEncryption = cluster.Properties.DiskEncryptionProperties; AssignedIdentity = new AzureHDInsightClusterIdentity(cluster.Identity); - EncryptionInTransit =cluster.Properties?.EncryptionInTransitProperties?.IsEncryptionInTransitEnabled; - PrivateEndpoint = cluster.Properties?.ConnectivityEndpoints?.FirstOrDefault(endpoint => endpoint.Name.Equals("HTTPS-INTERNAL"))?.Location; - var vnet = Utils.ExtractRole(AzureHDInsightClusterNodeType.WorkerNode.ToString(),cluster.Properties.ComputeProfile)?.VirtualNetworkProfile; + EncryptionInTransit = cluster.Properties?.IsEncryptionInTransitEnabled; + if(cluster.Properties?.StorageAccounts != null && cluster.Properties?.StorageAccounts.Count > 0) + { + EnableSecureChannel = cluster.Properties?.StorageAccounts[0]?.EnableSecureChannel; + } + PrivateEndpoint = cluster.Properties?.ConnectivityEndpoints?.FirstOrDefault(endpoint => endpoint.Name.Equals("HTTPS-INTERNAL"))?.EndpointLocation; + var vnet = Utils.ExtractRole(AzureHDInsightClusterNodeType.WorkerNode.ToString(),cluster.Properties.ComputeRoles)?.VirtualNetworkProfile; VirtualNetworkId = vnet?.Id; SubnetName = Utils.GetResourceNameFromResourceId(vnet?.Subnet); - ComputeProfile = cluster.Properties?.ComputeProfile != null ? new AzureHDInsightComputeProfile(cluster.Properties.ComputeProfile) : null; + ComputeProfile = cluster.Properties.ComputeRoles != null ? new AzureHDInsightComputeProfile(cluster.Properties.ComputeRoles) : null; KafkaRestProperties = cluster?.Properties?.KafkaRestProperties != null ? new AzureHDInsightKafkaRestProperties(cluster.Properties.KafkaRestProperties) : null; NetworkProperties = cluster?.Properties?.NetworkProperties != null ? new AzureHDInsightNetworkProperties(cluster.Properties.NetworkProperties) : null; ComputeIsolationProperties = cluster?.Properties?.ComputeIsolationProperties != null ? new AzureHDInsightComputeIsolationProperties(cluster.Properties.ComputeIsolationProperties) : null; @@ -85,7 +90,7 @@ public AzureHDInsightCluster(Cluster cluster) PrivateEndpointConnections = cluster?.Properties?.PrivateEndpointConnections?.Select(connection => new AzureHDInsightPrivateEndpointConnection(connection)).ToList(); } - public AzureHDInsightCluster(Cluster cluster, IDictionary clusterConfiguration, IDictionary clusterIdentity) + public AzureHDInsightCluster(HDInsightClusterData cluster, IReadOnlyDictionary clusterConfiguration, IReadOnlyDictionary clusterIdentity) : this(cluster) { if (clusterConfiguration != null) @@ -202,6 +207,11 @@ public AzureHDInsightCluster(Cluster cluster, IDictionary cluste /// public string StorageFileSystem { get; set; } + /// + /// Enable secure channel or not, it's an optional field. Default value is false when cluster version less 5.1 and true when cluster version great or equal 5.1. + /// + public bool? EnableSecureChannel { get; set; } + /// /// Default storage container for this cluster. /// @@ -220,7 +230,7 @@ public AzureHDInsightCluster(Cluster cluster, IDictionary cluste /// /// Data Disks Group Properties for the Worker Role. /// - public List WorkerNodeDataDisksGroups { get; set; } + public List WorkerNodeDataDisksGroups { get; set; } /// /// Gets or sets the security profile. @@ -238,7 +248,7 @@ public AzureHDInsightCluster(Cluster cluster, IDictionary cluste /// /// Gets or sets the disk encryption properties. /// - public DiskEncryptionProperties DiskEncryption { get; set; } + public HDInsightDiskEncryptionProperties DiskEncryption { get; set; } /// /// Gets or sets the assigned identity. diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightClusterIdentity.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightClusterIdentity.cs index e2f6612654ba..407cea10e2c1 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightClusterIdentity.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightClusterIdentity.cs @@ -1,4 +1,5 @@ -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.Core; +using Azure.ResourceManager.Models; using System; using System.Collections.Generic; using System.Text; @@ -20,17 +21,17 @@ public AzureHDInsightClusterIdentity(string principalId = null, string tenantId UserAssignedIdentities = userAssignedIdentities; } - public AzureHDInsightClusterIdentity(ClusterIdentity clusterIdentity) + public AzureHDInsightClusterIdentity(ManagedServiceIdentity clusterIdentity) { - PrincipalId = clusterIdentity?.PrincipalId; - TenantId = clusterIdentity?.TenantId; - Type = clusterIdentity?.Type; - UserAssignedIdentities =clusterIdentity?.UserAssignedIdentities != null ? new Dictionary() : null; + PrincipalId = clusterIdentity?.PrincipalId.ToString(); + TenantId = clusterIdentity?.TenantId.ToString(); + Type = clusterIdentity?.ManagedServiceIdentityType.ToString(); + UserAssignedIdentities = clusterIdentity?.UserAssignedIdentities != null ? new Dictionary() : null; if (UserAssignedIdentities != null) { foreach( var entry in clusterIdentity.UserAssignedIdentities) { - UserAssignedIdentities.Add(entry.Key, new AzureHDInsightUserAssignedIdentity(entry.Value)); + UserAssignedIdentities.Add(entry.Key.ToString(), new AzureHDInsightUserAssignedIdentity(entry.Value)); } } } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightComputeIsolationProperties.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightComputeIsolationProperties.cs index bc1adb4e56bf..dcb7cc9c2ed0 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightComputeIsolationProperties.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightComputeIsolationProperties.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Text; @@ -29,7 +29,7 @@ public AzureHDInsightComputeIsolationProperties(bool? enableComputeIsolation = n HostSku = hostSku; } - public AzureHDInsightComputeIsolationProperties(ComputeIsolationProperties computeIsolationProperties = null) + public AzureHDInsightComputeIsolationProperties(HDInsightComputeIsolationProperties computeIsolationProperties = null) { EnableComputeIsolation = computeIsolationProperties?.EnableComputeIsolation; HostSku = computeIsolationProperties?.HostSku; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightComputeProfile.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightComputeProfile.cs index 34dd9d268f51..61e8c5032c8a 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightComputeProfile.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightComputeProfile.cs @@ -12,11 +12,11 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; +using Azure.ResourceManager.HDInsight.Models; using Microsoft.WindowsAzure.Commands.Common; namespace Microsoft.Azure.Commands.HDInsight.Models @@ -30,9 +30,9 @@ public AzureHDInsightComputeProfile(IList roles = null) Roles = roles; } - public AzureHDInsightComputeProfile(ComputeProfile computeProfile) + public AzureHDInsightComputeProfile(IList roles) { - Roles = computeProfile.Roles?.Select(role => new AzureHDInsightRole(role)).ToList(); + Roles = roles?.Select(role => new AzureHDInsightRole(role)).ToList(); } public IList Roles { get; set; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConfig.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConfig.cs index 4c01b990a0df..77265a1dea09 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConfig.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConfig.cs @@ -13,7 +13,7 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.HDInsight.Models.Management; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections; using System.Collections.Generic; @@ -42,6 +42,11 @@ public class AzureHDInsightConfig /// public string StorageAccountKey { get; set; } + /// + /// Enable secure channel or not, it's an optional field. + /// + public bool? EnableSecureChannel { get; set; } + /// /// Gets or sets the size of the Head Node. /// @@ -130,7 +135,7 @@ public class AzureHDInsightConfig /// /// Gets config actions for the cluster. /// - public Dictionary> ScriptActions { get; private set; } + public Dictionary> ScriptActions { get; private set; } /// /// Gets or sets the security profile. @@ -190,7 +195,7 @@ public AzureHDInsightConfig() ClusterType = Constants.Hadoop; AdditionalStorageAccounts = new Dictionary(); Configurations = new Dictionary(); - ScriptActions = new Dictionary>(); + ScriptActions = new Dictionary>(); ComponentVersion = new Dictionary(); } } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConnectivityEndpoint.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConnectivityEndpoint.cs index 575df033da2e..b01d9170c246 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConnectivityEndpoint.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightConnectivityEndpoint.cs @@ -12,9 +12,10 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; +using System.Net; using System.Text; namespace Microsoft.Azure.Commands.HDInsight.Models @@ -36,9 +37,9 @@ public AzureHDInsightConnectivityEndpoint(ConnectivityEndpoint connectivityEndpo { Name = connectivityEndpoint?.Name; Protocol = connectivityEndpoint?.Protocol; - Location = connectivityEndpoint?.Location; + Location = connectivityEndpoint?.EndpointLocation; Port = connectivityEndpoint?.Port; - PrivateIPAddress = connectivityEndpoint?.PrivateIPAddress; + PrivateIPAddress = connectivityEndpoint?.PrivateIPAddress?.ToString(); } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightDataDisksGroups.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightDataDisksGroups.cs index 3a9ed4d14acb..69171f09ee31 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightDataDisksGroups.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightDataDisksGroups.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Models.Management; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models { @@ -33,11 +33,11 @@ public AzureHDInsightDataDisksGroups(int? disksPerNode = null, string storageAcc DiskSizeGB = diskSizeGB; } - public AzureHDInsightDataDisksGroups(DataDisksGroups dataDisksGroups) + public AzureHDInsightDataDisksGroups(HDInsightClusterDataDiskGroup dataDisksGroups) { DisksPerNode = dataDisksGroups.DisksPerNode; StorageAccountType = dataDisksGroups.StorageAccountType; - DiskSizeGB = dataDisksGroups.DiskSizeGB; + DiskSizeGB = dataDisksGroups.DiskSizeInGB; } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightGatewaySettings.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightGatewaySettings.cs index 6f7717666230..2732b236ab24 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightGatewaySettings.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightGatewaySettings.cs @@ -12,15 +12,15 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models.Management { public class AzureHDInsightGatewaySettings { - public AzureHDInsightGatewaySettings(GatewaySettings gatewaySettings) + public AzureHDInsightGatewaySettings(HDInsightClusterGatewaySettings gatewaySettings) { - this.IsCredentialEnabled = gatewaySettings.IsCredentialEnabled; + this.IsCredentialEnabled = gatewaySettings.IsCredentialEnabled.ToString(); this.UserName = gatewaySettings.UserName; this.Password = gatewaySettings.Password; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightHardwareProfile.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightHardwareProfile.cs index 6f5f33cae874..80e46e11d907 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightHardwareProfile.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightHardwareProfile.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -34,11 +34,6 @@ public AzureHDInsightHardwareProfile(string vmSize = null) VmSize = vmSize; } - public AzureHDInsightHardwareProfile(HardwareProfile hardwareProfile) - { - VmSize = hardwareProfile.VmSize; - } - /// /// Gets or sets the size of the VM /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightHostInfo.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightHostInfo.cs index 78f8ae0cdf36..b017312d2702 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightHostInfo.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightHostInfo.cs @@ -12,17 +12,17 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models.Management { public class AzureHDInsightHostInfo { - public AzureHDInsightHostInfo(HostInfo hostInfo) + public AzureHDInsightHostInfo(HDInsightClusterHostInfo hostInfo) { name = hostInfo?.Name; Fqdn = hostInfo?.Fqdn; - EffectiveDiskEncryptionKeyUrl = hostInfo?.EffectiveDiskEncryptionKeyUrl; + EffectiveDiskEncryptionKeyUrl = hostInfo?.EffectiveDiskEncryptionKeyUri?.ToString(); } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightIPConfiguration.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightIPConfiguration.cs index 5fc02b79633c..80c7bdbc46e8 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightIPConfiguration.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightIPConfiguration.cs @@ -1,6 +1,9 @@ -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.Core; +using Azure.ResourceManager.HDInsight.Models; +using Azure.ResourceManager.Resources.Models; using System; using System.Collections.Generic; +using System.Net; using System.Text; namespace Microsoft.Azure.Commands.HDInsight.Models @@ -9,27 +12,26 @@ public class AzureHDInsightIPConfiguration { public AzureHDInsightIPConfiguration() { } - public AzureHDInsightIPConfiguration(IPConfiguration ipConfiguration) + public AzureHDInsightIPConfiguration(HDInsightIPConfiguration ipConfiguration) { Id = ipConfiguration.Id; Name = ipConfiguration.Name; - Type = ipConfiguration.Type; - ProvisioningState = ipConfiguration.ProvisioningState; - Primary = ipConfiguration.Primary; - PrivateIPAddress = ipConfiguration.PrivateIPAddress; - PrivateIPAllocationMethod = ipConfiguration.PrivateIPAllocationMethod; - Subnet = ipConfiguration.Subnet?.Id; + Type = ipConfiguration.ResourceType; + ProvisioningState = ipConfiguration.ProvisioningState.ToString(); + Primary = ipConfiguration.IsPrimary; + PrivateIPAddress = ipConfiguration.PrivateIPAddress?.ToString(); + PrivateIPAllocationMethod = ipConfiguration.PrivateIPAllocationMethod.ToString(); + Subnet = ipConfiguration.SubnetId; } - public IPConfiguration ToIPConfiguration() + public HDInsightIPConfiguration ToIPConfiguration() { - return new IPConfiguration() + return new HDInsightIPConfiguration(Name) { - Name = this.Name, - Primary = this.Primary, - PrivateIPAddress = this.PrivateIPAddress, + IsPrimary = Primary, + PrivateIPAddress = this.PrivateIPAddress != null? IPAddress.Parse(this.PrivateIPAddress) : null, PrivateIPAllocationMethod = this.PrivateIPAllocationMethod, - Subnet = new ResourceId(this.Subnet) + SubnetId = this.Subnet != null ? new ResourceIdentifier(this.Subnet) : null }; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightKafkaProperties.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightKafkaProperties.cs index d1bd3d922c0d..826786f7ea3d 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightKafkaProperties.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightKafkaProperties.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Text; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightLinuxOperatingSystemProfile.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightLinuxOperatingSystemProfile.cs index 73aee9320702..cfa45342c4ce 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightLinuxOperatingSystemProfile.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightLinuxOperatingSystemProfile.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -34,11 +34,11 @@ public AzureHDInsightLinuxOperatingSystemProfile(string username = null, string SshProfile = sshProfile; } - public AzureHDInsightLinuxOperatingSystemProfile(LinuxOperatingSystemProfile linuxOperatingSystemProfile) + public AzureHDInsightLinuxOperatingSystemProfile(HDInsightLinuxOSProfile linuxOperatingSystemProfile) { Username = linuxOperatingSystemProfile?.Username; Password = linuxOperatingSystemProfile?.Password; - SshProfile = linuxOperatingSystemProfile?.SshProfile != null ? new AzureHDInsightSshProfile(linuxOperatingSystemProfile.SshProfile) : null; + SshProfile = linuxOperatingSystemProfile?.SshPublicKeys != null ? new AzureHDInsightSshProfile(linuxOperatingSystemProfile.SshPublicKeys) : null; } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightMonitoring.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightMonitoring.cs index cf353f693821..0f670c11d6b6 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightMonitoring.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightMonitoring.cs @@ -12,15 +12,15 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models.Management { public class AzureHDInsightMonitoring { - public AzureHDInsightMonitoring(ClusterMonitoringResponse clusterMonitoringResponse) + public AzureHDInsightMonitoring(HDInsightClusterExtensionStatus clusterMonitoringResponse) { - ClusterMonitoringEnabled = clusterMonitoringResponse.ClusterMonitoringEnabled ?? false; + ClusterMonitoringEnabled = clusterMonitoringResponse.IsClusterMonitoringEnabled ?? false; WorkspaceId = clusterMonitoringResponse.WorkspaceId; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightNetworkProperties.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightNetworkProperties.cs index 432d4fee135f..79f5a825b8c5 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightNetworkProperties.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightNetworkProperties.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Text; @@ -29,10 +29,10 @@ public AzureHDInsightNetworkProperties(string resourceProviderConnection = null, PrivateLink = privateLink; } - public AzureHDInsightNetworkProperties(NetworkProperties networkProperties = null) + public AzureHDInsightNetworkProperties(HDInsightClusterNetworkProperties networkProperties) { - ResourceProviderConnection = networkProperties?.ResourceProviderConnection; - PrivateLink = networkProperties?.PrivateLink; + ResourceProviderConnection = networkProperties.ResourceProviderConnection.ToString(); + PrivateLink = networkProperties.PrivateLink.ToString(); } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightOsProfile.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightOsProfile.cs index 04e00d10d967..a7e4503da274 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightOsProfile.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightOsProfile.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -29,9 +29,9 @@ public AzureHDInsightOsProfile(AzureHDInsightLinuxOperatingSystemProfile linuxOp { LinuxOperatingSystemProfile = linuxOperatingSystemProfile; } - public AzureHDInsightOsProfile(OsProfile osProfile) + public AzureHDInsightOsProfile(HDInsightLinuxOSProfile linuxOperatingSystemProfile) { - LinuxOperatingSystemProfile = osProfile?.LinuxOperatingSystemProfile != null ? new AzureHDInsightLinuxOperatingSystemProfile(osProfile.LinuxOperatingSystemProfile) : null; + LinuxOperatingSystemProfile = linuxOperatingSystemProfile != null ? new AzureHDInsightLinuxOperatingSystemProfile(linuxOperatingSystemProfile) : null; } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateEndpoint.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateEndpoint.cs index bc656e0235d1..3f2262ac7cd0 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateEndpoint.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateEndpoint.cs @@ -12,21 +12,21 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Models.Management; +using Azure.Core; namespace Microsoft.Azure.Commands.HDInsight.Models { public class AzureHDInsightPrivateEndpoint { - public AzureHDInsightPrivateEndpoint(PrivateEndpoint privateEndpoint) + public AzureHDInsightPrivateEndpoint(ResourceIdentifier privateEndpointId) { - Id = privateEndpoint.Id; + Id = privateEndpointId; } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateEndpointConnection.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateEndpointConnection.cs index 13314ecc14cd..a99761aed5cf 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateEndpointConnection.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateEndpointConnection.cs @@ -12,7 +12,8 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -24,15 +25,15 @@ namespace Microsoft.Azure.Commands.HDInsight.Models { public class AzureHDInsightPrivateEndpointConnection { - public AzureHDInsightPrivateEndpointConnection(PrivateEndpointConnection privateEndpointConnection) + public AzureHDInsightPrivateEndpointConnection(HDInsightPrivateEndpointConnectionData privateEndpointConnection) { Id = privateEndpointConnection.Id; Name = privateEndpointConnection.Name; - Type = privateEndpointConnection.Type; + Type = privateEndpointConnection.ResourceType; LinkIdentifier = privateEndpointConnection.LinkIdentifier; - PrivateEndpoint = new AzureHDInsightPrivateEndpoint(privateEndpointConnection.PrivateEndpoint); - PrivateLinkServiceConnectionState = new AzureHDInsightPrivateLinkServiceConnectionState(privateEndpointConnection.PrivateLinkServiceConnectionState); - ProvisioningState = privateEndpointConnection.ProvisioningState; + PrivateEndpoint = new AzureHDInsightPrivateEndpoint(privateEndpointConnection.PrivateEndpointId); + PrivateLinkServiceConnectionState = new AzureHDInsightPrivateLinkServiceConnectionState(privateEndpointConnection.ConnectionState); + ProvisioningState = privateEndpointConnection.ProvisioningState.ToString(); } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateLinkConfiguration.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateLinkConfiguration.cs index 0ef7d480c325..0bd42c261d01 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateLinkConfiguration.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateLinkConfiguration.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -26,24 +26,19 @@ public class AzureHDInsightPrivateLinkConfiguration { public AzureHDInsightPrivateLinkConfiguration() { } - public AzureHDInsightPrivateLinkConfiguration(PrivateLinkConfiguration privateLinkConfiguration) + public AzureHDInsightPrivateLinkConfiguration(HDInsightPrivateLinkConfiguration privateLinkConfiguration) { Id = privateLinkConfiguration.Id; Name = privateLinkConfiguration.Name; - Type = privateLinkConfiguration.Type; + Type = privateLinkConfiguration.ResourceType; GroupId = privateLinkConfiguration.GroupId; - ProvisioningState = privateLinkConfiguration.ProvisioningState; - IpConfigurations = privateLinkConfiguration.IpConfigurations?.Select(item => new AzureHDInsightIPConfiguration(item)).ToList(); + ProvisioningState = privateLinkConfiguration.ProvisioningState.ToString(); + IpConfigurations = privateLinkConfiguration.IPConfigurations?.Select(item => new AzureHDInsightIPConfiguration(item)).ToList(); } - public PrivateLinkConfiguration ToPrivateLinkConfiguration() + public HDInsightPrivateLinkConfiguration ToPrivateLinkConfiguration() { - return new PrivateLinkConfiguration() - { - Name = this.Name, - GroupId = this.GroupId, - IpConfigurations = this.IpConfigurations.Select(item=> item.ToIPConfiguration()).ToList() - }; + return new HDInsightPrivateLinkConfiguration(this.Name, this.GroupId, this.IpConfigurations.Select(item => item.ToIPConfiguration()).ToList()); } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateLinkServiceConnectionState.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateLinkServiceConnectionState.cs index 93792e74c8de..d48783667e3e 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateLinkServiceConnectionState.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightPrivateLinkServiceConnectionState.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -24,9 +24,9 @@ namespace Microsoft.Azure.Commands.HDInsight.Models { public class AzureHDInsightPrivateLinkServiceConnectionState { - public AzureHDInsightPrivateLinkServiceConnectionState(PrivateLinkServiceConnectionState privateLinkServiceConnectionState) + public AzureHDInsightPrivateLinkServiceConnectionState(HDInsightPrivateLinkServiceConnectionState privateLinkServiceConnectionState) { - Status = privateLinkServiceConnectionState.Status; + Status = privateLinkServiceConnectionState.Status.ToString(); Description = privateLinkServiceConnectionState.Description; ActionsRequired = privateLinkServiceConnectionState.ActionsRequired; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightQuotaCapability.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightQuotaCapability.cs index 8a7090b78415..9627abf7bdf8 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightQuotaCapability.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightQuotaCapability.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Text; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRegionalQuotaCapability.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRegionalQuotaCapability.cs index d14d192d30ff..0362a4e696ab 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRegionalQuotaCapability.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRegionalQuotaCapability.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Text; @@ -23,7 +23,7 @@ public class AzureHDInsightRegionalQuotaCapability { public AzureHDInsightRegionalQuotaCapability(RegionalQuotaCapability regionalQuotaCapability) { - this.RegionName = regionalQuotaCapability.RegionName; + this.RegionName = regionalQuotaCapability.Region; this.CoresUsed = regionalQuotaCapability.CoresUsed; this.CoresAvailable = regionalQuotaCapability.CoresAvailable; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRegionsCapability.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRegionsCapability.cs index 968f92a8a0d2..2a939bbad924 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRegionsCapability.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRegionsCapability.cs @@ -12,8 +12,9 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System.Collections.Generic; +using System.Linq; namespace Microsoft.Azure.Commands.HDInsight.Models.Management { @@ -21,7 +22,7 @@ public class AzureHDInsightRegionsCapability { public AzureHDInsightRegionsCapability(RegionsCapability regionsCapability) { - this.Available = regionsCapability?.Available; + this.Available = regionsCapability?.Available.ToList(); } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRole.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRole.cs index 9af802fb892f..4add0b256d7b 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRole.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRole.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -39,14 +39,14 @@ public AzureHDInsightRole(string name = null, int? minInstanceCount = null, int? ScriptActions = scriptActions; } - public AzureHDInsightRole(Role role) + public AzureHDInsightRole(HDInsightClusterRole role) { Name = role.Name; MinInstanceCount = role.MinInstanceCount; TargetInstanceCount = role.TargetInstanceCount; - AutoscaleConfiguration = role.AutoscaleConfiguration != null ? new AzureHDInsightAutoscale(role.AutoscaleConfiguration) : null; - HardwareProfile = role.HardwareProfile != null ? new AzureHDInsightHardwareProfile(role.HardwareProfile) : null; - OsProfile = role.OsProfile != null ? new AzureHDInsightOsProfile(role.OsProfile) : null; + AutoscaleConfiguration = role.AutoScaleConfiguration != null ? new AzureHDInsightAutoscale(role.AutoScaleConfiguration) : null; + HardwareProfile = role.HardwareVmSize != null ? new AzureHDInsightHardwareProfile(role.HardwareVmSize) : null; + OsProfile = role.OSLinuxProfile != null ? new AzureHDInsightOsProfile(role.OSLinuxProfile) : null; VirtualNetworkProfile = role.VirtualNetworkProfile != null ? new AzureHDInsightVirtualNetworkProfile(role.VirtualNetworkProfile) : null; DataDisksGroups = role.DataDisksGroups?.Select(dataDisk => new AzureHDInsightDataDisksGroups(dataDisk)).ToList(); ScriptActions = role.ScriptActions?.Select(script => new AzureHDInsightScriptAction(script)).ToList(); diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptAction.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptAction.cs index 8c7ecf4a4b3d..a2ea0eff4f6a 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptAction.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptAction.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Linq; @@ -23,7 +23,7 @@ public class AzureHDInsightRuntimeScriptAction public AzureHDInsightRuntimeScriptAction(RuntimeScriptAction runtimeScriptAction) { Name = runtimeScriptAction.Name; - Uri = runtimeScriptAction.Uri != null ? new Uri(runtimeScriptAction.Uri) : null; + Uri = runtimeScriptAction.Uri != null ? runtimeScriptAction.Uri : null; Parameters = runtimeScriptAction.Parameters; NodeTypes = runtimeScriptAction.Roles.ToArray(); ApplicationName = runtimeScriptAction.ApplicationName; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptActionDetail.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptActionDetail.cs index 1e91e6d4e9f1..bbae736405eb 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptActionDetail.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptActionDetail.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Globalization; @@ -26,8 +26,8 @@ public AzureHDInsightRuntimeScriptActionDetail(RuntimeScriptActionDetail runtime : base(runtimeScriptActionDetail) { ScriptExecutionId = runtimeScriptActionDetail.ScriptExecutionId ?? 0; - StartTime = DateTime.Parse(runtimeScriptActionDetail.StartTime, CultureInfo.InvariantCulture, DateTimeStyles.RoundtripKind); - EndTime = DateTime.Parse(runtimeScriptActionDetail.EndTime, CultureInfo.InvariantCulture, DateTimeStyles.RoundtripKind); + StartTime = DateTime.Parse(runtimeScriptActionDetail.StartOn.ToString(), CultureInfo.InvariantCulture, DateTimeStyles.RoundtripKind); + EndTime = DateTime.Parse(runtimeScriptActionDetail.EndOn.ToString(), CultureInfo.InvariantCulture, DateTimeStyles.RoundtripKind); Status = runtimeScriptActionDetail.Status; Operation = runtimeScriptActionDetail.Operation; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptActionOperationResource.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptActionOperationResource.cs index 62c56cc41ee9..871f1df1b888 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptActionOperationResource.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightRuntimeScriptActionOperationResource.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models.Management { @@ -28,7 +28,7 @@ public AzureHDInsightRuntimeScriptActionOperationResource(RuntimeScriptAction ru } else { - OperationState = AsyncOperationState.Succeeded.ToString(); + OperationState = HDInsightAsyncOperationState.Succeeded.ToString(); } } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightScriptAction.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightScriptAction.cs index b2cb8c3dd032..66eb24c4de7e 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightScriptAction.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightScriptAction.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; namespace Microsoft.Azure.Commands.HDInsight.Models.Management @@ -22,7 +22,7 @@ public class AzureHDInsightScriptAction public AzureHDInsightScriptAction(ScriptAction action) { ActionName = action.Name; - Uri = new Uri(action.Uri); + Uri = new Uri(action.Uri.ToString()); Parameters = action.Parameters; } @@ -37,7 +37,7 @@ public ScriptAction GetScriptActionFromPSModel() { param = Parameters; } - return new ScriptAction(ActionName, Uri.IsAbsoluteUri ? Uri.AbsoluteUri : Uri.ToString(), param); + return new ScriptAction(ActionName, Uri.IsAbsoluteUri ? new Uri(Uri.AbsoluteUri) : Uri, param); } public string ActionName { get; set; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightSshProfile.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightSshProfile.cs index 12845bba46d9..3608896c27f9 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightSshProfile.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightSshProfile.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Models.Management; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models { @@ -31,9 +31,9 @@ public AzureHDInsightSshProfile(IList publicKeys) PublicKeys = publicKeys; } - public AzureHDInsightSshProfile(SshProfile sshProfile) + public AzureHDInsightSshProfile(IList sshPublicKeys) { - PublicKeys = sshProfile?.PublicKeys?.Select(key => new AzureHDInsightSshPublicKey(key)).ToList(); + PublicKeys = sshPublicKeys?.Select(key => new AzureHDInsightSshPublicKey(key)).ToList(); } /// diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightSshPublicKey.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightSshPublicKey.cs index de0fdad149fc..c7b52311ca76 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightSshPublicKey.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightSshPublicKey.cs @@ -12,13 +12,13 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Models.Management; +using Azure.ResourceManager.HDInsight.Models; namespace Microsoft.Azure.Commands.HDInsight.Models { @@ -30,7 +30,7 @@ public AzureHDInsightSshPublicKey(string certificateData = null) CertificateData = certificateData; } - public AzureHDInsightSshPublicKey(SshPublicKey sshPublicKey) + public AzureHDInsightSshPublicKey(HDInsightSshPublicKey sshPublicKey) { CertificateData = sshPublicKey?.CertificateData; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightUserAssignedIdentity.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightUserAssignedIdentity.cs index 0e0ebf102233..7cdd34af0996 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightUserAssignedIdentity.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightUserAssignedIdentity.cs @@ -1,7 +1,7 @@ -using Microsoft.Azure.Management.HDInsight.Models; -using System; +using System; using System.Collections.Generic; using System.Text; +using Azure.ResourceManager.Models; namespace Microsoft.Azure.Commands.HDInsight.Models { @@ -13,14 +13,12 @@ public AzureHDInsightUserAssignedIdentity(string principalId = null, string clie { PrincipalId = principalId; ClientId = clientId; - TenantId = tenantId; } public AzureHDInsightUserAssignedIdentity(UserAssignedIdentity userAssignedIdentity) { - PrincipalId = userAssignedIdentity?.PrincipalId; - ClientId = userAssignedIdentity?.ClientId; - TenantId = userAssignedIdentity?.TenantId; + PrincipalId = userAssignedIdentity?.PrincipalId.ToString(); + ClientId = userAssignedIdentity?.ClientId.ToString(); } public string PrincipalId { get; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionSpec.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionSpec.cs index 04f3595e6e1d..a42bb4336f64 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionSpec.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionSpec.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Text; @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.HDInsight.Models.Management { public class AzureHDInsightVersionSpec { - public AzureHDInsightVersionSpec(VersionSpec versionSpec) + public AzureHDInsightVersionSpec(HDInsightVersionSpec versionSpec) { this.FriendlyName = versionSpec?.FriendlyName; this.DisplayName = versionSpec?.DisplayName; @@ -32,6 +32,6 @@ public AzureHDInsightVersionSpec(VersionSpec versionSpec) public string FriendlyName { get; set; } public string DisplayName { get; set; } public string IsDefault { get; set; } - public IDictionary ComponentVersions { get; set; } + public IReadOnlyDictionary ComponentVersions { get; set; } } } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionsCapability.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionsCapability.cs index fe4cc7723c19..279756e2e453 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionsCapability.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVersionsCapability.cs @@ -12,14 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System.Collections.Generic; namespace Microsoft.Azure.Commands.HDInsight.Models.Management { public class AzureHDInsightVersionsCapability { - public AzureHDInsightVersionsCapability(VersionsCapability versionsCapability) + public AzureHDInsightVersionsCapability(HDInsightVersionsCapability versionsCapability) { Available = new List(); int? count = versionsCapability?.Available?.Count; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVirtualNetworkProfile.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVirtualNetworkProfile.cs index 4fb2c3dab28c..e2ff70b8f953 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVirtualNetworkProfile.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVirtualNetworkProfile.cs @@ -12,13 +12,14 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; using System.Management.Automation; using Microsoft.WindowsAzure.Commands.Common; using Microsoft.Azure.Commands.HDInsight.Models.Management; +using Azure.Core; namespace Microsoft.Azure.Commands.HDInsight.Models { @@ -32,9 +33,9 @@ public AzureHDInsightVirtualNetworkProfile(string id = null, string subnet = nul Subnet = subnet; } - public AzureHDInsightVirtualNetworkProfile(VirtualNetworkProfile virtualNetworkProfile) + public AzureHDInsightVirtualNetworkProfile(HDInsightVirtualNetworkProfile virtualNetworkProfile) { - Id = virtualNetworkProfile.Id; + Id = virtualNetworkProfile.Id.ToString(); Subnet = virtualNetworkProfile.Subnet; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizeCompatibilityFilter.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizeCompatibilityFilter.cs index 120f011dd0c0..746e689977d0 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizeCompatibilityFilter.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizeCompatibilityFilter.cs @@ -12,23 +12,24 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; +using System.Linq; using System.Text; namespace Microsoft.Azure.Commands.HDInsight.Models.Management { public class AzureHDInsightVmSizeCompatibilityFilter { - public AzureHDInsightVmSizeCompatibilityFilter(VmSizeCompatibilityFilterV2 vmSizeCompatibilityFilter) + public AzureHDInsightVmSizeCompatibilityFilter(HDInsightVmSizeCompatibilityFilterV2 vmSizeCompatibilityFilter) { - this.FilterMode = vmSizeCompatibilityFilter?.FilterMode; - this.Regions = vmSizeCompatibilityFilter?.Regions; - this.ClusterFlavors = vmSizeCompatibilityFilter?.ClusterFlavors; - this.NodeTypes = vmSizeCompatibilityFilter?.NodeTypes; - this.ClusterVersions = vmSizeCompatibilityFilter?.ClusterVersions; - this.Vmsizes = vmSizeCompatibilityFilter?.VmSizes; + this.FilterMode = vmSizeCompatibilityFilter?.FilterMode.ToString(); + this.Regions = vmSizeCompatibilityFilter?.Regions.ToList(); + this.ClusterFlavors = vmSizeCompatibilityFilter?.ClusterFlavors.ToList(); + this.NodeTypes = vmSizeCompatibilityFilter?.NodeTypes.ToList(); + this.ClusterVersions = vmSizeCompatibilityFilter?.ClusterVersions.ToList(); + this.Vmsizes = vmSizeCompatibilityFilter?.VmSizes.ToList(); } public string FilterMode { get; set; } public IList Regions { get; set; } diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizesCapability.cs b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizesCapability.cs index cd6bd01c0871..a774bbcb85b2 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizesCapability.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHDInsightVmSizesCapability.cs @@ -12,7 +12,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Text; diff --git a/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs b/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs index 3cce4c31fe3b..2a4f1902dcbe 100644 --- a/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs +++ b/src/HDInsight/HDInsight/Models/Management/AzureHdInsightManagementClient.cs @@ -14,10 +14,14 @@ using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; -using Microsoft.Azure.Management.HDInsight; -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight; +using Azure.ResourceManager.HDInsight.Models; using System.Collections.Generic; -using System.Linq; +using Azure.ResourceManager; +using System; +using Azure.Identity; +using Azure.ResourceManager.Resources; +using Azure; namespace Microsoft.Azure.Commands.HDInsight.Models { @@ -25,7 +29,7 @@ public class AzureHdInsightManagementClient { public AzureHdInsightManagementClient(IAzureContext context) { - HdInsightManagementClient = AzureSession.Instance.ClientFactory.CreateArmClient(context, AzureEnvironment.Endpoint.ResourceManager); + HdInsightManagementClient = new ArmClient(new AzurePowerShellCredential(), context.Subscription.Id.ToString()); } /// @@ -33,16 +37,20 @@ public AzureHdInsightManagementClient(IAzureContext context) /// public AzureHdInsightManagementClient() { } - private IHDInsightManagementClient HdInsightManagementClient { get; set; } + private ArmClient HdInsightManagementClient { get; set; } - public virtual Cluster CreateCluster(string resourceGroupName, string clusterName, ClusterCreateParametersExtended createParams) + //private ResourceIdentifier SubscriptionId { get; set; } + + public virtual HDInsightClusterData CreateCluster(string resourceGroupName, string clusterName, HDInsightClusterCreateOrUpdateContent createParams) { - return HdInsightManagementClient.Clusters.Create(resourceGroupName, clusterName, createParams); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + ArmOperation armOperation = resourceGroup.GetHDInsightClusters().CreateOrUpdateAsync(WaitUntil.Completed, clusterName, createParams).GetAwaiter().GetResult(); + return armOperation.Value.Data; } - public virtual List GetCluster(string resourceGroupName, string clusterName) + public virtual List GetCluster(string resourceGroupName, string clusterName) { - var result = new List(); + var result = new List(); if (string.IsNullOrEmpty(resourceGroupName) && string.IsNullOrEmpty(clusterName)) { result.AddRange(ListClusters()); @@ -66,77 +74,91 @@ public virtual List GetCluster(string resourceGroupName, string cluster return result; } - public virtual IList ListClusters() + public virtual IList ListClusters() { - var toReturn = new List(); - var response = HdInsightManagementClient.Clusters.List(); - toReturn.AddRange(response); - while (!string.IsNullOrEmpty(response.NextPageLink)) + var toReturn = new List(); + IEnumerator enumerator = HdInsightManagementClient.GetDefaultSubscription().GetHDInsightClusters().GetEnumerator(); + + try { - response = HdInsightManagementClient.Clusters.ListNext(response.NextPageLink); - toReturn.AddRange(response); + while (enumerator.MoveNext()) + { + toReturn.Add(enumerator.Current.Data); + } + } + catch (Exception e) + { + // HDInsightClusterData came from another service and was added to the list. An error occurred and is not within the scope of this project's processing. + string message = e.Message; } return toReturn; } - public virtual IList ListClusters(string resourceGroupName) + public virtual IList ListClusters(string resourceGroupName) { - var toReturn = new List(); - var response = HdInsightManagementClient.Clusters.ListByResourceGroup(resourceGroupName); - toReturn.AddRange(response); - while (!string.IsNullOrEmpty(response.NextPageLink)) + var toReturn = new List(); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + Pageable clusters = resourceGroup.GetHDInsightClusters().GetAll(); + + foreach(HDInsightClusterResource cluster in clusters) { - response = HdInsightManagementClient.Clusters.ListByResourceGroupNext(response.NextPageLink); - toReturn.AddRange(response); + toReturn.Add(cluster.Data); } return toReturn; } - public virtual Cluster Get(string resourceGroupName, string clusterName) + public virtual HDInsightClusterData Get(string resourceGroupName, string clusterName) { - return HdInsightManagementClient.Clusters.Get(resourceGroupName, clusterName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + return resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value.Data; } - public virtual void ResizeCluster(string resourceGroupName, string clusterName, ClusterResizeParameters resizeParams) + public virtual void ResizeCluster(string resourceGroupName, string clusterName, HDInsightClusterResizeContent resizeParams) { - HdInsightManagementClient.Clusters.Resize(resourceGroupName, clusterName, resizeParams); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.ResizeAsync(WaitUntil.Completed, HDInsightRoleName.Workernode, resizeParams).GetAwaiter().GetResult(); } - public virtual void ExecuteScriptActions(string resourceGroupName, string clusterName, ExecuteScriptActionParameters executeScriptActionParameters) + public virtual void ExecuteScriptActions(string resourceGroupName, string clusterName, ExecuteScriptActionContent executeScriptActionParameters) { - HdInsightManagementClient.Clusters.ExecuteScriptActions(resourceGroupName, clusterName, executeScriptActionParameters); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.ExecuteScriptActionsAsync(WaitUntil.Completed, executeScriptActionParameters).GetAwaiter().GetResult(); } public virtual RuntimeScriptActionDetail GetScriptExecutionDetail(string resourceGroupName, string clusterName, long scriptExecutionId) { - return HdInsightManagementClient.ScriptActions.GetExecutionDetail(resourceGroupName, clusterName, scriptExecutionId.ToString()); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + return cluster.GetScriptActionExecutionDetailAsync(scriptExecutionId.ToString()).GetAwaiter().GetResult().Value; } public virtual IList ListPersistedScripts(string resourceGroupName, string clusterName) { var toReturn = new List(); - var response = HdInsightManagementClient.ScriptActions.ListByCluster(resourceGroupName, clusterName); - toReturn.AddRange(response); - while (!string.IsNullOrEmpty(response.NextPageLink)) + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + Pageable runtimeScriptActionDetails = cluster.GetScriptActions(); + + foreach (var item in runtimeScriptActionDetails) { - response = HdInsightManagementClient.ScriptActions.ListByClusterNext(response.NextPageLink); - toReturn.AddRange(response); + toReturn.Add(item); } - return toReturn; } public virtual List ListScriptExecutionHistory(string resourceGroupName, string clusterName) { var toReturn = new List(); - var response = HdInsightManagementClient.ScriptExecutionHistory.ListByCluster(resourceGroupName, clusterName); - toReturn.AddRange(response); - while (!string.IsNullOrEmpty(response.NextPageLink)) + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + Pageable runtimeScriptActionDetails = cluster.GetScriptExecutionHistories(); + foreach (var item in runtimeScriptActionDetails) { - response = HdInsightManagementClient.ScriptExecutionHistory.ListByClusterNext(response.NextPageLink); - toReturn.AddRange(response); + toReturn.Add(item); } return toReturn; @@ -144,40 +166,52 @@ public virtual List ListScriptExecutionHistory(string public virtual void DeletePersistedScript(string resourceGroupName, string clusterName, string scriptName) { - HdInsightManagementClient.ScriptActions.Delete(resourceGroupName, clusterName, scriptName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.DeleteScriptActionAsync(scriptName).GetAwaiter().GetResult(); } public virtual void PromoteScript(string resourceGroupName, string clusterName, long scriptExecutionId) { - HdInsightManagementClient.ScriptExecutionHistory.Promote(resourceGroupName, clusterName, scriptExecutionId.ToString()); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.PromoteScriptExecutionHistoryAsync(scriptExecutionId.ToString()).GetAwaiter().GetResult(); } public virtual void DeleteCluster(string resourceGroupName, string clusterName) { - HdInsightManagementClient.Clusters.Delete(resourceGroupName, clusterName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.DeleteAsync(WaitUntil.Completed).GetAwaiter().GetResult(); } - public virtual void UpdateGatewayCredential(string resourceGroupName, string clusterName, UpdateGatewaySettingsParameters updateGatewaySettingsParameters) + public virtual void UpdateGatewayCredential(string resourceGroupName, string clusterName, HDInsightClusterUpdateGatewaySettingsContent updateGatewaySettingsParameters) { - HdInsightManagementClient.Clusters.UpdateGatewaySettings(resourceGroupName, clusterName, updateGatewaySettingsParameters); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.UpdateGatewaySettingsAsync(WaitUntil.Completed, updateGatewaySettingsParameters).GetAwaiter().GetResult(); } - public virtual GatewaySettings GetGatewaySettings(string resourceGroupName, string clusterName) + public virtual HDInsightClusterGatewaySettings GetGatewaySettings(string resourceGroupName, string clusterName) { - return HdInsightManagementClient.Clusters.GetGatewaySettings(resourceGroupName, clusterName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + return cluster.GetGatewaySettingsAsync().GetAwaiter().GetResult().Value; } - public virtual CapabilitiesResult GetProperties(string location) + public virtual HDInsightCapabilitiesResult GetProperties(string location) { - return HdInsightManagementClient.Locations.GetCapabilities(location); + return HdInsightManagementClient.GetDefaultSubscriptionAsync().GetAwaiter().GetResult().GetHDInsightCapabilitiesAsync(location).GetAwaiter().GetResult(); } - public virtual ClusterConfigurations ListConfigurations(string resourceGroupName, string clusterName) + public virtual HDInsightClusterConfigurations ListConfigurations(string resourceGroupName, string clusterName) { - return HdInsightManagementClient.Configurations.List(resourceGroupName, clusterName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + return cluster.GetConfigurationAsync().GetAwaiter().GetResult().Value; } - public virtual IDictionary GetClusterConfigurations(string resourceGroupName, string clusterName, string configurationName) + public virtual IReadOnlyDictionary GetClusterConfigurations(string resourceGroupName, string clusterName, string configurationName) { Dictionary properties = new Dictionary(); @@ -188,113 +222,135 @@ public virtual IDictionary GetClusterConfigurations(string resou return properties; } - return HdInsightManagementClient.Configurations.Get( - resourceGroupName, - clusterName, - configurationName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + return cluster.GetConfigurationAsync(configurationName).GetAwaiter().GetResult().Value; } - public virtual void EnableMonitoring(string resourceGroupName, string clusterName, ClusterMonitoringRequest clusterMonitoringParameters) + public virtual void EnableMonitoring(string resourceGroupName, string clusterName, HDInsightClusterEnableClusterMonitoringContent clusterMonitoringParameters) { - HdInsightManagementClient.Extensions.EnableMonitoring(resourceGroupName, clusterName, clusterMonitoringParameters); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.EnableClusterMonitoringExtensionAsync(WaitUntil.Completed, clusterMonitoringParameters).GetAwaiter().GetResult(); } public virtual void DisableMonitoring(string resourceGroupName, string clusterName) { - HdInsightManagementClient.Extensions.DisableMonitoring(resourceGroupName, clusterName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.DisableClusterMonitoringExtensionAsync(WaitUntil.Completed).GetAwaiter().GetResult(); } - public virtual ClusterMonitoringResponse GetMonitoring(string resourceGroupName, string clusterName) + public virtual HDInsightClusterExtensionStatus GetMonitoring(string resourceGroupName, string clusterName) { - return HdInsightManagementClient.Extensions.GetMonitoringStatus(resourceGroupName, clusterName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + return cluster.GetClusterMonitoringExtensionStatusAsync().GetAwaiter().GetResult().Value; } - public virtual void EnableAzureMonitor(string resourceGroupName, string clusterName, AzureMonitorRequest azureMonitorRequestParameters) + public virtual void EnableAzureMonitor(string resourceGroupName, string clusterName, HDInsightAzureMonitorExtensionEnableContent azureMonitorRequestParameters) { - HdInsightManagementClient.Extensions.EnableAzureMonitor(resourceGroupName, clusterName, azureMonitorRequestParameters); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.EnableAzureMonitorExtensionAsync(WaitUntil.Completed, azureMonitorRequestParameters).GetAwaiter().GetResult(); } public virtual void DisableAzureMonitor(string resourceGroupName, string clusterName) { - HdInsightManagementClient.Extensions.DisableAzureMonitor(resourceGroupName, clusterName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.DisableAzureMonitorExtensionAsync(WaitUntil.Completed).GetAwaiter().GetResult(); } - public virtual AzureMonitorResponse GetAzureMonitor(string resourceGroupName, string clusterName) + public virtual HDInsightAzureMonitorExtensionStatus GetAzureMonitor(string resourceGroupName, string clusterName) { - return HdInsightManagementClient.Extensions.GetAzureMonitorStatus(resourceGroupName, clusterName); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + return cluster.GetAzureMonitorExtensionStatusAsync().GetAwaiter().GetResult().Value; } - public virtual void RotateDiskEncryptionKey(string resourceGroupName, string clusterName, ClusterDiskEncryptionParameters parameters) + public virtual void RotateDiskEncryptionKey(string resourceGroupName, string clusterName, HDInsightClusterDiskEncryptionContent parameters) { - HdInsightManagementClient.Clusters.RotateDiskEncryptionKey(resourceGroupName, clusterName, parameters); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.RotateDiskEncryptionKeyAsync(WaitUntil.Completed, parameters).GetAwaiter().GetResult(); } - public virtual IList GetHosts(string resourceGroupName, string clusterName) + public virtual IList GetHosts(string resourceGroupName, string clusterName) { - return HdInsightManagementClient.VirtualMachines.ListHosts(resourceGroupName, clusterName); + var toReturn = new List(); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + Pageable clusterHostInfos = cluster.GetVirtualMachineHosts(); + foreach (var item in clusterHostInfos) + { + toReturn.Add(item); + } + + return toReturn; } public virtual void RestartHosts(string resourceGroupName, string clusterName, IList hosts) { - HdInsightManagementClient.VirtualMachines.RestartHosts(resourceGroupName, clusterName, hosts); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.RestartVirtualMachineHostsAsync(WaitUntil.Completed, hosts).GetAwaiter().GetResult(); } - public virtual void UpdateAutoScaleConfiguration(string resourceGroupName, string clusterName, AutoscaleConfigurationUpdateParameter autoscaleConfigurationUpdateParameter) + public virtual void UpdateAutoScaleConfiguration(string resourceGroupName, string clusterName, HDInsightAutoScaleConfigurationUpdateContent autoscaleConfigurationUpdateParameter) { - HdInsightManagementClient.Clusters.UpdateAutoScaleConfiguration(resourceGroupName, clusterName, autoscaleConfigurationUpdateParameter); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.UpdateAutoScaleConfigurationAsync(WaitUntil.Completed, HDInsightRoleName.Workernode, autoscaleConfigurationUpdateParameter).GetAwaiter().GetResult(); } - public virtual BillingResponseListResult ListBillingSpecs(string location) + public virtual HDInsightBillingSpecsListResult ListBillingSpecs(string location) { - return HdInsightManagementClient.Locations.ListBillingSpecs(location); + return HdInsightManagementClient.GetDefaultSubscription().GetHDInsightBillingSpecsAsync(location).GetAwaiter().GetResult(); } - public virtual IList GetPrivateLinkResources(string resourceGroupName, string clusterName, string privateLinkResourceName) + public virtual IList GetPrivateLinkResources(string resourceGroupName, string clusterName, string privateLinkResourceName) { - var result = HdInsightManagementClient.PrivateLinkResources.ListByCluster(resourceGroupName, clusterName)?.Value; - if (privateLinkResourceName != null) + var toReturn = new List(); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + Pageable privateLinkResources = cluster.GetHDInsightPrivateLinkResources().GetAll(); + + foreach (var item in privateLinkResources) { - result=result?.Where(item => item.Name.Equals(privateLinkResourceName))?.ToList(); + toReturn.Add(item.Data); } - return result; + + return toReturn; } - public virtual IList GetPrivateEndpointConnections(string resourceGroupName, string clusterName, string privateEndpointConnectionName) + public virtual IList GetPrivateEndpointConnections(string resourceGroupName, string clusterName, string privateEndpointConnectionName) { - var result = HdInsightManagementClient.PrivateEndpointConnections.ListByCluster(resourceGroupName, clusterName).ToList(); - if (privateEndpointConnectionName != null) + var toReturn = new List(); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + Pageable privateEndpointConnectionResources = cluster.GetHDInsightPrivateEndpointConnections().GetAll(); + foreach (var item in privateEndpointConnectionResources) { - result = result?.Where(item => item.Name.Equals(privateEndpointConnectionName)).ToList(); + toReturn.Add(item.Data); } - return result; - } - public virtual void DeletePrivateEndpointConnection(string resourceGroupName, string clusterName, string privateEndpointConnectionName) - { - HdInsightManagementClient.PrivateEndpointConnections.Delete(resourceGroupName, clusterName, privateEndpointConnectionName); + return toReturn; } - public virtual PrivateEndpointConnection UpdatePrivateEndpointConnection(string resourceGroupName, string clusterName, string privateEndpointConnectionName, PrivateEndpointConnection privateEndpointConnectionParameter) + public virtual void DeletePrivateEndpointConnection(string resourceGroupName, string clusterName, string privateEndpointConnectionName) { - return HdInsightManagementClient.PrivateEndpointConnections.CreateOrUpdate(resourceGroupName, clusterName, privateEndpointConnectionName, privateEndpointConnectionParameter); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + cluster.GetHDInsightPrivateEndpointConnections().GetAsync(privateEndpointConnectionName).GetAwaiter().GetResult().Value.DeleteAsync(WaitUntil.Completed).GetAwaiter().GetResult(); } - private void ResetClusterIdentity(ClusterCreateParametersExtended createParams, string aadAuthority, string dataLakeAudience) + public virtual HDInsightPrivateEndpointConnectionData UpdatePrivateEndpointConnection(string resourceGroupName, string clusterName, string privateEndpointConnectionName, HDInsightPrivateEndpointConnectionData privateEndpointConnectionParameter) { - var configuation = (Dictionary>)createParams.Properties.ClusterDefinition.Configurations; - Dictionary clusterIdentity; - if(!configuation.TryGetValue("clusterIdentity", out clusterIdentity)) - { - return; - } - clusterIdentity["clusterIdentity.resourceUri"]=dataLakeAudience; - - string aadTenantIdWithUrl; - clusterIdentity.TryGetValue("clusterIdentity.aadTenantId", out aadTenantIdWithUrl); + ResourceGroupResource resourceGroup = HdInsightManagementClient.GetDefaultSubscription().GetResourceGroups().GetAsync(resourceGroupName).GetAwaiter().GetResult(); + HDInsightClusterResource cluster = resourceGroup.GetHDInsightClusters().GetAsync(clusterName).GetAwaiter().GetResult().Value; + return cluster.GetHDInsightPrivateEndpointConnections().CreateOrUpdateAsync(WaitUntil.Completed, privateEndpointConnectionName, privateEndpointConnectionParameter).GetAwaiter().GetResult().Value.Data; - const string defaultPubliCloudAadAuthority= "https://login.windows.net/"; - string newAadTenantIdWithUrl = aadTenantIdWithUrl?.Replace(defaultPubliCloudAadAuthority, aadAuthority); - clusterIdentity["clusterIdentity.aadTenantId"]=newAadTenantIdWithUrl; } } } diff --git a/src/HDInsight/HDInsight/Utils.cs b/src/HDInsight/HDInsight/Utils.cs index 1c2e19bf4f7f..3e8970425d19 100644 --- a/src/HDInsight/HDInsight/Utils.cs +++ b/src/HDInsight/HDInsight/Utils.cs @@ -11,7 +11,7 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using Microsoft.Azure.Management.HDInsight.Models; +using Azure.ResourceManager.HDInsight.Models; using System; using System.Collections.Generic; using System.Linq; @@ -20,9 +20,9 @@ namespace Microsoft.Azure.Commands.HDInsight.Models { internal class Utils { - public static Role ExtractRole(string nodeType, ComputeProfile computeProfile) + public static HDInsightClusterRole ExtractRole(string nodeType,IList computeRoles) { - return computeProfile?.Roles?.FirstOrDefault(role => role.Name.Equals(nodeType.ToLower())); + return computeRoles?.FirstOrDefault(role => role.Name.Equals(nodeType.ToLower())); } public static string GetResourceNameFromResourceId(string resourceId) diff --git a/src/HDInsight/HDInsight/help/Add-AzHDInsightScriptAction.md b/src/HDInsight/HDInsight/help/Add-AzHDInsightScriptAction.md index 87a0d8b886e2..d119f7447f5b 100644 --- a/src/HDInsight/HDInsight/help/Add-AzHDInsightScriptAction.md +++ b/src/HDInsight/HDInsight/help/Add-AzHDInsightScriptAction.md @@ -33,7 +33,7 @@ You can provide each cluster with a list of script actions to run in a specified $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = (Get-AzStorageAccountKey -ResourceGroupName $storageAccountResourceGroupName -Name $storageAccountName)[0].value +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container001" @@ -135,10 +135,10 @@ The acceptable values for this parameter are: - ZookeeperNode ```yaml -Type: Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType +Type: Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType Parameter Sets: (All) Aliases: -Accepted values: HeadNode, WorkerNode, ZookeeperNode, EdgeNode +Accepted values: HeadNode, WorkerNode, ZookeeperNode Required: True Position: 1 diff --git a/src/HDInsight/HDInsight/help/Get-AzHDInsightProperty.md b/src/HDInsight/HDInsight/help/Get-AzHDInsightProperty.md index ec5e3d9f1b5e..90f4fbc055ea 100644 --- a/src/HDInsight/HDInsight/help/Get-AzHDInsightProperty.md +++ b/src/HDInsight/HDInsight/help/Get-AzHDInsightProperty.md @@ -69,7 +69,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### None ## OUTPUTS -### Microsoft.Azure.Management.HDInsight.Models.AzureHDInsightCapabilities +### Azure.ResourceManager.HDInsight.Models.AzureHDInsightCapabilities ## NOTES ## RELATED LINKS diff --git a/src/HDInsight/HDInsight/help/New-AzHDInsightCluster.md b/src/HDInsight/HDInsight/help/New-AzHDInsightCluster.md index 86538524d901..93dd6872e378 100644 --- a/src/HDInsight/HDInsight/help/New-AzHDInsightCluster.md +++ b/src/HDInsight/HDInsight/help/New-AzHDInsightCluster.md @@ -22,7 +22,7 @@ New-AzHDInsightCluster [-Location] [-ResourceGroupName] [-Clus [-AmbariDatabase ] [-AdditionalStorageAccounts ] [-Configurations ] - [-ScriptActions ] + [-ScriptActions ] [-StorageContainer ] [-StorageRootPath ] [-StorageFileSystem ] [-Version ] [-HeadNodeSize ] [-WorkerNodeSize ] [-EdgeNodeSize ] [-KafkaManagementNodeSize ] [-ZookeeperNodeSize ] [-ClusterType ] @@ -36,7 +36,7 @@ New-AzHDInsightCluster [-Location] [-ResourceGroupName] [-Clus [-EncryptionAtHost ] [-AutoscaleConfiguration ] [-EnableIDBroker] [-KafkaClientGroupId ] [-KafkaClientGroupName ] [-ResourceProviderConnection ] [-PrivateLink ] [-EnableComputeIsolation] [-ComputeIsolationHostSku ] [-Zone ] - [-PrivateLinkConfiguration ] + [-PrivateLinkConfiguration ] [-EnableSecureChannel ] [-DefaultProfile ] [] ``` @@ -49,7 +49,7 @@ New-AzHDInsightCluster [-Location] [-ResourceGroupName] [-Clus [-AmbariDatabase ] [-AdditionalStorageAccounts ] [-Configurations ] - [-ScriptActions ] + [-ScriptActions ] [-StorageContainer ] [-StorageRootPath ] [-StorageFileSystem ] [-Version ] [-HeadNodeSize ] [-WorkerNodeSize ] [-EdgeNodeSize ] [-KafkaManagementNodeSize ] [-ZookeeperNodeSize ] [-ClusterType ] @@ -77,7 +77,7 @@ New-AzHDInsightCluster [-Location] [-ResourceGroupName] [-Clus [-AmbariDatabase ] [-AdditionalStorageAccounts ] [-Configurations ] - [-ScriptActions ] + [-ScriptActions ] [-StorageContainer ] [-StorageRootPath ] [-StorageFileSystem ] [-Version ] [-HeadNodeSize ] [-WorkerNodeSize ] [-EdgeNodeSize ] [-KafkaManagementNodeSize ] [-ZookeeperNodeSize ] [-ClusterType ] @@ -111,9 +111,7 @@ The cmdlet may call below Microsoft Graph API according to input parameters: $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -147,9 +145,7 @@ This command creates a cluster in the current subscription. $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -191,9 +187,7 @@ New-AzHDInsightCluster ` $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -226,9 +220,7 @@ New-AzHDInsightCluster ` $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -266,9 +258,7 @@ New-AzHDInsightCluster ` $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -301,9 +291,7 @@ New-AzHDInsightCluster ` $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -340,9 +328,7 @@ New-AzHDInsightCluster ` $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -467,9 +453,7 @@ New-AzHDInsightCluster ` $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -508,9 +492,7 @@ New-AzHDInsightCluster ` $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -559,9 +541,7 @@ New-AzHDInsightCluster ` $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageacct001" -$storageAccountKey = Get-AzStorageAccountKey ` - -ResourceGroupName $storageAccountResourceGroupName ` - -Name $storageAccountName | Where-Object {$_.KeyName -eq "key1"} | ForEach-Object{$_.Value} +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" # Cluster configuration info @@ -961,6 +941,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableSecureChannel +Enables HDInsight secure channel feature. + +```yaml +Type: System.Nullable`1[System.Boolean] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EncryptionAlgorithm Gets or sets the encryption algorithm. @@ -1290,7 +1285,7 @@ Specifies the script actions to run on the cluster at the end of cluster creatio You can alternatively use Add-AzHDInsightScriptAction. ```yaml -Type: System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]] +Type: System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]] Parameter Sets: (All) Aliases: Accepted values: HeadNode, WorkerNode, ZookeeperNode, EdgeNode diff --git a/src/HDInsight/HDInsight/help/New-AzHDInsightClusterConfig.md b/src/HDInsight/HDInsight/help/New-AzHDInsightClusterConfig.md index ed734597a8b6..9a267aefb715 100644 --- a/src/HDInsight/HDInsight/help/New-AzHDInsightClusterConfig.md +++ b/src/HDInsight/HDInsight/help/New-AzHDInsightClusterConfig.md @@ -22,7 +22,7 @@ New-AzHDInsightClusterConfig [-StorageAccountResourceId ] [-StorageAccou [-CertificatePassword ] [-AadTenantId ] [-MinSupportedTlsVersion ] [-AssignedIdentity ] [-EncryptionAlgorithm ] [-EncryptionKeyName ] [-EncryptionKeyVersion ] [-EncryptionVaultUri ] [-EncryptionInTransit ] - [-EncryptionAtHost ] [-DefaultProfile ] [] + [-EnableSecureChannel ] [-EncryptionAtHost ] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -36,7 +36,7 @@ The **New-AzHDInsightClusterConfig** cmdlet creates a non-persisted object that $storageAccountResourceGroupName = "Group" $storageAccountResourceId = "yourstorageaccountresourceid" $storageAccountName = "yourstorageaccountname" -$storageAccountKey = (Get-AzStorageAccountKey -ResourceGroupName $storageAccountResourceGroupName -Name $storageAccountName)[0].value +$storageAccountKey = "yourstorageaccountkey" $storageContainer = "container002" @@ -223,6 +223,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableSecureChannel +Enables HDInsight secure channel feature. + +```yaml +Type: System.Nullable`1[System.Boolean] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EdgeNodeSize Specifies the size of the virtual machine for the edge node. Use Get-AzVMSize for acceptable VM sizes, and see HDInsight's pricing page. This parameter is valid only for RServer clusters. diff --git a/src/HDInsight/HDInsight/help/Set-AzHDInsightClusterDiskEncryptionKey.md b/src/HDInsight/HDInsight/help/Set-AzHDInsightClusterDiskEncryptionKey.md index 2230987ac4ea..1d418670167b 100644 --- a/src/HDInsight/HDInsight/help/Set-AzHDInsightClusterDiskEncryptionKey.md +++ b/src/HDInsight/HDInsight/help/Set-AzHDInsightClusterDiskEncryptionKey.md @@ -226,7 +226,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Management.HDInsight.Models.Cluster +### Azure.ResourceManager.HDInsight.Models.Cluster ## NOTES diff --git a/src/HDInsight/HDInsight/help/Set-AzHDInsightClusterSize.md b/src/HDInsight/HDInsight/help/Set-AzHDInsightClusterSize.md index 3d478785ef6d..ea6748baf5af 100644 --- a/src/HDInsight/HDInsight/help/Set-AzHDInsightClusterSize.md +++ b/src/HDInsight/HDInsight/help/Set-AzHDInsightClusterSize.md @@ -101,7 +101,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.Management.HDInsight.Models.Cluster +### Azure.ResourceManager.HDInsight.Models.Cluster ## NOTES diff --git a/tools/StaticAnalysis/Exceptions/Az.HDInsight/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.HDInsight/BreakingChangeIssues.csv new file mode 100644 index 000000000000..ce00f4ddae26 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.HDInsight/BreakingChangeIssues.csv @@ -0,0 +1,51 @@ +"Module","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.ManagementCommands.AddAzureHDInsightClusterIdentity","Add-AzHDInsightClusterIdentity","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.ManagementCommands.AddAzureHDInsightClusterIdentity","Add-AzHDInsightClusterIdentity","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightComponentVersionCommand","Add-AzHDInsightComponentVersion","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightComponentVersionCommand","Add-AzHDInsightComponentVersion","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValue","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightConfigValuesCommand","Add-AzHDInsightConfigValue","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightMetastoreCommand","Add-AzHDInsightMetastore","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightMetastoreCommand","Add-AzHDInsightMetastore","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightScriptActionCommand","Add-AzHDInsightScriptAction","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightScriptActionCommand","Add-AzHDInsightScriptAction","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightScriptActionCommand","Add-AzHDInsightScriptAction","0","2020","The cmdlet 'Add-AzHDInsightScriptAction' no longer supports the type 'Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType' for parameter 'NodeType'.","Change the type for parameter 'NodeType' back to 'Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightSecurityProfile","Add-AzHDInsightSecurityProfile","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightStorageCommand","Add-AzHDInsightStorage","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.AddAzureHDInsightStorageCommand","Add-AzHDInsightStorage","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.DisableAzureHDInsightAzureMonitorCommand","Disable-AzHDInsightAzureMonitor","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.DisableAzureHDInsightAzureMonitorCommand","Disable-AzHDInsightAzureMonitor","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.EnableAzureHDInsightAzureMonitorCommand","Enable-AzHDInsightAzureMonitor","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.EnableAzureHDInsightAzureMonitorCommand","Enable-AzHDInsightAzureMonitor","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightAzureMonitorCommand","Get-AzHDInsightAzureMonitor","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightAzureMonitorCommand","Get-AzHDInsightAzureMonitor","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightCommand","Get-AzHDInsightCluster","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightCommand","Get-AzHDInsightCluster","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightClusterAutoscaleConfigurationCommand","Get-AzHDInsightClusterAutoscaleConfiguration","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightClusterAutoscaleConfigurationCommand","Get-AzHDInsightClusterAutoscaleConfiguration","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightHostCommand","Get-AzHDInsightHost","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightHostCommand","Get-AzHDInsightHost","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.GetAzureHDInsightPropertiesCommand","Get-AzHDInsightProperty","0","3030","The generic type for 'property ComponentVersions' has been changed from 'System.Collections.Generic.IDictionary`2[System.String,System.String]' to 'System.Collections.Generic.IReadOnlyDictionary`2[System.String,System.String]'. ","Change the generic type for 'property ComponentVersions' back to 'System.Collections.Generic.IDictionary`2[System.String,System.String]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.NewAzureHDInsightClusterCommand","New-AzHDInsightCluster","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.NewAzureHDInsightClusterCommand","New-AzHDInsightCluster","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.NewAzureHDInsightClusterCommand","New-AzHDInsightCluster","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.NewAzureHDInsightClusterCommand","New-AzHDInsightCluster","0","3030","The generic type for 'parameter ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'parameter ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.NewAzureHDInsightClusterConfigCommand","New-AzHDInsightClusterConfig","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.RemoveAzureHDInsightClusterAutoscaleConfigurationCommand","Remove-AzHDInsightClusterAutoscaleConfiguration","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.RemoveAzureHDInsightClusterAutoscaleConfigurationCommand","Remove-AzHDInsightClusterAutoscaleConfiguration","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.RemoveAzureHDInsightClusterAutoscaleConfigurationCommand","Remove-AzHDInsightClusterAutoscaleConfiguration","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.RemoveAzureHDInsightClusterAutoscaleConfigurationCommand","Remove-AzHDInsightClusterAutoscaleConfiguration","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterAutoscaleConfigurationCommand","Set-AzHDInsightClusterAutoscaleConfiguration","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterAutoscaleConfigurationCommand","Set-AzHDInsightClusterAutoscaleConfiguration","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterAutoscaleConfigurationCommand","Set-AzHDInsightClusterAutoscaleConfiguration","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterAutoscaleConfigurationCommand","Set-AzHDInsightClusterAutoscaleConfiguration","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterDiskEncryptionKeyCommand","Set-AzHDInsightClusterDiskEncryptionKey","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterDiskEncryptionKeyCommand","Set-AzHDInsightClusterDiskEncryptionKey","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterDiskEncryptionKeyCommand","Set-AzHDInsightClusterDiskEncryptionKey","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterDiskEncryptionKeyCommand","Set-AzHDInsightClusterDiskEncryptionKey","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterSizeCommand","Set-AzHDInsightClusterSize","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightClusterSizeCommand","Set-AzHDInsightClusterSize","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightDefaultStorageCommand","Set-AzHDInsightDefaultStorage","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightDefaultStorageCommand","Set-AzHDInsightDefaultStorage","0","3030","The generic type for 'property ScriptActions' has been changed from 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]' to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Commands.HDInsight.Models.Management.RuntimeScriptActionClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'. ","Change the generic type for 'property ScriptActions' back to 'System.Collections.Generic.Dictionary`2[Microsoft.Azure.Management.HDInsight.Models.ClusterNodeType,System.Collections.Generic.List`1[Microsoft.Azure.Commands.HDInsight.Models.Management.AzureHDInsightScriptAction]]'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightGatewayCredentialCommand","Set-AzHDInsightGatewayCredential","0","3000","The type of property 'DiskEncryption' of type 'Microsoft.Azure.Commands.HDInsight.Models.AzureHDInsightCluster' has changed from 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties' to 'Azure.ResourceManager.HDInsight.Models.HDInsightDiskEncryptionProperties'.","Change the type of property 'DiskEncryption' back to 'Microsoft.Azure.Management.HDInsight.Models.DiskEncryptionProperties'." +"Az.HDInsight","Microsoft.Azure.Commands.HDInsight.SetAzureHDInsightGatewayCredentialCommand","Set-AzHDInsightGatewayCredential","0","3030","The generic type for 'property WorkerNodeDataDisksGroups' has been changed from 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]' to 'System.Collections.Generic.List`1[Azure.ResourceManager.HDInsight.Models.HDInsightClusterDataDiskGroup]'. ","Change the generic type for 'property WorkerNodeDataDisksGroups' back to 'System.Collections.Generic.List`1[Microsoft.Azure.Management.HDInsight.Models.DataDisksGroups]'."